Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:65096 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 18459 invoked from network); 22 Jan 2013 22:51:49 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 22 Jan 2013 22:51:49 -0000 Authentication-Results: pb1.pair.com header.from=johannes@php.net; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=johannes@php.net; spf=unknown; sender-id=unknown Received-SPF: unknown (pb1.pair.com: domain php.net does not designate 217.114.211.66 as permitted sender) X-PHP-List-Original-Sender: johannes@php.net X-Host-Fingerprint: 217.114.211.66 config.schlueters.de Received: from [217.114.211.66] ([217.114.211.66:58403] helo=config.schlueters.de) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 7F/B0-12923-3081FF05 for ; Tue, 22 Jan 2013 17:51:49 -0500 Received: from [192.168.2.20] (ppp-93-104-30-133.dynamic.mnet-online.de [93.104.30.133]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by config.schlueters.de (Postfix) with ESMTPSA id 0BFFB65381; Tue, 22 Jan 2013 23:51:45 +0100 (CET) To: nathan@starin.biz Cc: 'Pete Boere' , internals@lists.php.net In-Reply-To: <236801cdf8b6$9cfdfdc0$d6f9f940$@starin.biz> References: <1358859827.1894.3158.camel@guybrush> <236801cdf8b6$9cfdfdc0$d6f9f940$@starin.biz> Content-Type: text/plain; charset="UTF-8" Organization: PHP Development Team Date: Tue, 22 Jan 2013 23:52:40 +0100 Message-ID: <1358895160.1894.4354.camel@guybrush> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 Content-Transfer-Encoding: 7bit Subject: RE: [PHP-DEV] __init magic method From: johannes@php.net (Johannes =?ISO-8859-1?Q?Schl=FCter?=) On Tue, 2013-01-22 at 09:39 -0600, nathan@starin.biz wrote: > I am actually going to +1 this idea I thought about discussing it, but > opted out of it because classes are most often in their own file and > if you need to do some static binding you can do it at the end of the > file after the class definition. However, I do believe this idea would > make it easier to extend classes How so? > and make the code look much cleaner. Thankfully that's subjective. Some people prefer explicit information which can easily be read over magic, though. > @Johannes In your example I'd say it would be ADBCE because I would > say it should work like as if you had each one in it's own file > autoloading them. (also I believe the function would be static) In other words: It is called at completely arbitrary times. Which makes reading code hard as well as making the implementation more complex (dependency detection) Mind that your order requires the engine to delay initialization of B and C (and E) till D is found. And then go back. That's why I listed the version with B in the end, that's a tiny bit simpler to implement, but as hard to explain. Now for a second game: What does the following script print? ABC? ACB? BAC? I guess the later as the code next to A or C might depend on the class already. I hope you see the mess this creates, whereas we nowadays have a solution which is properly defined and can easily be understood by everybody, even by people coming from other languages and just trying to understand the code which was put in front of them. > One of the potential problems I can see is the visibility > (public/private/protected) of the function as it'd likely need to be > public because it could never be auto-executed if anything else. Such things would be trivial to check during compilation phase. johannes