Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:85782 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 59517 invoked from network); 13 Apr 2015 15:29:36 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 13 Apr 2015 15:29:36 -0000 Authentication-Results: pb1.pair.com header.from=kontakt@beberlei.de; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=kontakt@beberlei.de; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain beberlei.de from 209.85.212.179 cause and error) X-PHP-List-Original-Sender: kontakt@beberlei.de X-Host-Fingerprint: 209.85.212.179 mail-wi0-f179.google.com Received: from [209.85.212.179] ([209.85.212.179:37556] helo=mail-wi0-f179.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E6/52-41712-ED0EB255 for ; Mon, 13 Apr 2015 11:29:35 -0400 Received: by widdi4 with SMTP id di4so56784910wid.0 for ; Mon, 13 Apr 2015 08:29:32 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=u4u/Csk/y1dTjvP9ZB2T84m+uRq7BpUkWTpj/PUca6o=; b=FZylUyuZ5rWWxq+wHLME13LO624W+0jBWvmkj9fw8oIMs8IjlX1dltq2gSokDtssEh 66xoqZM6bJECW40tB2TRTeeHYyCR6AGXIlipoTsiRyu+1p0dQOFTBpcFQ+Rjpy5wv29O rEx8UEcVbUcCKgtES+DAh9Wta5AXmf4xT5lP1vb80karvUX7DSPRa5BYXmI+mcJwOOaH 7qkSEEv4C3j8tsWSV0UW4JpoYXxzUyeGX4MsgIdsoLX2JIvDpNvXMQqwoChBOZsEp9Do tYwEpvBDQoBz7JK7M3lmBIgUKqrFPD7A6ujOGaXRyGBsFjMUd+e4KCCfTT+PqSzRTk01 ETmg== X-Gm-Message-State: ALoCoQlLfP1t1dasrATnm86Wp7bTptnoITen0TH4GqAYxYN9CBxFX4I0m1Isw/8UKSDORjgmz+1Z MIME-Version: 1.0 X-Received: by 10.180.74.37 with SMTP id q5mr22627514wiv.59.1428938972047; Mon, 13 Apr 2015 08:29:32 -0700 (PDT) Received: by 10.194.36.134 with HTTP; Mon, 13 Apr 2015 08:29:31 -0700 (PDT) X-Originating-IP: [77.11.126.214] In-Reply-To: <1428938604.3492.21.camel@kuechenschabe> References: <1428938604.3492.21.camel@kuechenschabe> Date: Mon, 13 Apr 2015 17:29:31 +0200 Message-ID: To: =?UTF-8?Q?Johannes_Schl=C3=BCter?= Cc: Johannes Ott , PHP Internals Content-Type: multipart/alternative; boundary=f46d043c7f24d5bd9d05139cc728 Subject: Re: [PHP-DEV] New RFC draft "static class constructor" From: kontakt@beberlei.de (Benjamin Eberlei) --f46d043c7f24d5bd9d05139cc728 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable What would happen if you "call the parent constructor": class A extends B { static public function __static() { B::__static(); } } On Mon, Apr 13, 2015 at 5:23 PM, Johannes Schl=C3=BCter wrote: > Hi, > > On Mon, 2015-04-13 at 15:37 +0200, Johannes Ott wrote: > > finally I managed to do my first RFC draft. > > > > https://wiki.php.net/rfc/static_class_constructor > > > > I hope I have done everything correct so far and I'm looking forward to > > your feedback on it. > > In my opinion this makes the language way more complex as there are more > places which "suddenly" execute code but solves a small problem compared > to that. (Which actually is an issue many people would suggest to avoid > completely instead of ennobling this with a language feature. > > Why am I saying it makes the language more complex? - Your proposal > seems to miss mentioning when exactly the method is executed. what is > the output of > > > a.php: > echo 'A: '.__FILE__.':'.__LINE__."\n"; > class A { > static function __static() { > echo __CLASS__.'::'.__METHOD__."\n"; > } > } > echo 'B: '.__FILE__.':'.__LINE__."\n"; > class B { > static function __static() { > echo __CLASS__.'::'.__METHOD__."\n"; > } > } > echo 'C: '.__FILE__.':'.__LINE__."\n"; > ?> > > b.php: > echo 'D: '.__FILE__.':'.__LINE__."\n"; > > C::$foo =3D 23; > echo 'E: '.__FILE__.':'.__LINE__."\n"; > > include 'a.php'; > echo 'F: '.__FILE__.':'.__LINE__."\n"; > > > class C { > static $foo =3D 0; > static function __static() { > echo __CLASS__.'::'.__METHOD__."\n"; > } > } > > echo 'G: '.__FILE__.':'.__LINE__."\n"; > > class D extends B { > static function __static() { > echo __CLASS__.'::'.__METHOD__."\n"; > } > } > > echo 'H: '.__FILE__.':'.__LINE__."\n"; > ?> > > > Mind that in b.php we make use of class C above the declaration, which > we can do as C is a simple class and can be bound early during > compilation. Class D however can only be bound during run-time, after > including a.php, which happens after C was already used. > > johannes > > --f46d043c7f24d5bd9d05139cc728--