Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:65088 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 89520 invoked from network); 22 Jan 2013 15:52:57 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 22 Jan 2013 15:52:57 -0000 Authentication-Results: pb1.pair.com header.from=ocramius@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=ocramius@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.220.174 as permitted sender) X-PHP-List-Original-Sender: ocramius@gmail.com X-Host-Fingerprint: 209.85.220.174 mail-vc0-f174.google.com Received: from [209.85.220.174] ([209.85.220.174:56539] helo=mail-vc0-f174.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E4/29-28294-7D5BEF05 for ; Tue, 22 Jan 2013 10:52:56 -0500 Received: by mail-vc0-f174.google.com with SMTP id n11so4841881vch.33 for ; Tue, 22 Jan 2013 07:52:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=tjRS24lCniNEi8zqFuSZ3rzM0oPnvA5gpKSQPULBsdo=; b=A1u32oEm0fvh67K7guJeqm5fKmdRrqzCoRqLb2+On7RdwzfY/7QyGvo2uMvt0+3bCx LJKqj+pq/gn1mhWARl9fEfWSSJDPPu4pXOEg9CV5vJi1tdgKOYMOZdmCp+w1mOVMuiiN z4qEvfHAgca10SD8pcY0OqQWcMPcdPhb8+qfN3HpCfPvtQiVImuyQV4t1pNgNgjVsnNr g9VgQ2GaJqmX2wh1ERNpLcObCjy+s3td2sjzpU5/VJHz9MFAh0pqjnYciSBMsoxSkJUR ZniXl7+oz+mmuDOxaR7Mf2lYtuENMepxf0ngwG7QTiUm7k49htJOk9+lyBYFE/+kmDmM b8AQ== X-Received: by 10.220.150.84 with SMTP id x20mr24032851vcv.73.1358869973377; Tue, 22 Jan 2013 07:52:53 -0800 (PST) MIME-Version: 1.0 Received: by 10.58.118.52 with HTTP; Tue, 22 Jan 2013 07:52:33 -0800 (PST) In-Reply-To: <236801cdf8b6$9cfdfdc0$d6f9f940$@starin.biz> References: <1358859827.1894.3158.camel@guybrush> <236801cdf8b6$9cfdfdc0$d6f9f940$@starin.biz> Date: Tue, 22 Jan 2013 16:52:33 +0100 Message-ID: To: nathan@starin.biz Cc: =?UTF-8?Q?Johannes_Schl=C3=BCter?= , Pete Boere , PHP Internals List Content-Type: multipart/alternative; boundary=f46d043c7c080f213c04d3e2921b Subject: Re: [PHP-DEV] __init magic method From: ocramius@gmail.com (Marco Pivetta) --f46d043c7c080f213c04d3e2921b Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable @Pete just FYI, PSR-1 excludes that such a logic should exist in a loaded file: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-c= oding-standard.md#23-side-effects Not sure if you are interested in following the FIG on these ideas, but the guideline makes actually sense. Marco Pivetta http://twitter.com/Ocramius http://ocramius.github.com/ On 22 January 2013 16:39, 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 y= ou > 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 easie= r > 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 i= t > 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 publ= ic > 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] > 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 > > bootstraping static properties on class load? > > Adding an __init method as you wish will just add complexity and gain ver= y > little. What complexity am I talking about? Well look at this single file= : > > class A { > public function __init() { echo __CLASS__; } > } > class B extends D { > public function __init() { echo __CLASS__; } > } > class C { > public function __init() { echo __CLASS__; } > } > class D { > public function __init() { echo __CLASS__; } > } > class E { > public function __init() { echo __CLASS__; } > } > ?> > > 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 > > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php > > --f46d043c7c080f213c04d3e2921b--