Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:65087 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 87504 invoked from network); 22 Jan 2013 15:39:07 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 22 Jan 2013 15:39:07 -0000 Authentication-Results: pb1.pair.com smtp.mail=nathan.bruer@starin.biz; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=nathan.bruer@starin.biz; sender-id=unknown Received-SPF: error (pb1.pair.com: domain starin.biz from 207.198.105.69 cause and error) X-PHP-List-Original-Sender: nathan.bruer@starin.biz X-Host-Fingerprint: 207.198.105.69 hawk.starindns.com Received: from [207.198.105.69] ([207.198.105.69:50075] helo=hawk.starindns.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 2F/B8-28294-A92BEF05 for ; Tue, 22 Jan 2013 10:39:06 -0500 Received: from 173-167-160-145-illinois.hfc.comcastbusiness.net ([173.167.160.145]:53568 helo=NathanBruerHP) by hawk.starindns.com with esmtpa (Exim 4.80) (envelope-from ) id 1TxfwD-0002QD-Ke; Tue, 22 Jan 2013 09:39:01 -0600 Sender: "Nathan Bruer" To: =?utf-8?Q?'Johannes_Schl=C3=BCter'?= , "'Pete Boere'" Cc: References: <1358859827.1894.3158.camel@guybrush> In-Reply-To: <1358859827.1894.3158.camel@guybrush> Date: Tue, 22 Jan 2013 09:39:05 -0600 Message-ID: <236801cdf8b6$9cfdfdc0$d6f9f940$@starin.biz> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Outlook 14.0 Thread-Index: AQHv8sFBfc2bmGu8i23UFyTUGaKTEgHZ9UsymAKywDA= Content-Language: en-us X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - hawk.starindns.com X-AntiAbuse: Original Domain - lists.php.net X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - starin.biz X-Get-Message-Sender-Via: hawk.starindns.com: authenticated_id: nathan.bruer@starin.biz Subject: RE: [PHP-DEV] __init magic method From: nathan@starin.biz 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 and make the code look much cleaner. @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) 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. Software Developer Nathan Bruer -----Original Message----- From: Johannes Schl=C3=BCter [mailto:johannes@php.net]=20 Sent: Tuesday, January 22, 2013 7:04 AM To: Pete Boere Cc: internals@lists.php.net Subject: Re: [PHP-DEV] __init magic method Hi, On Tue, 2013-01-22 at 12:29 +0000, Pete Boere wrote: > Has there ever been any discussion on an __init magic method for=20 > bootstraping static properties on class load? Adding an __init method as you wish will just add complexity and gain = very little. What complexity am I talking about? Well look at this = single file: What should this print? ABCDE? Then the derived class B is initialized = before the base class D, which might have strange effects and make = debugging hard. So maybe it is ACDEB? This makes the resolution quite = complicated. On the other hand: You are showing a goos solution, which is clear and = works well. PHP has the global scope, we don't force everything into = classes and then create Java-style static{}-madness. johannes -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, = visit: http://www.php.net/unsub.php