Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:49437 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 9670 invoked from network); 17 Aug 2010 08:46:12 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 17 Aug 2010 08:46:12 -0000 Authentication-Results: pb1.pair.com header.from=tyra3l@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=tyra3l@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.213.42 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: tyra3l@gmail.com X-Host-Fingerprint: 209.85.213.42 mail-yw0-f42.google.com Received: from [209.85.213.42] ([209.85.213.42:56330] helo=mail-yw0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E6/10-08806-E4C4A6C4 for ; Tue, 17 Aug 2010 04:46:07 -0400 Received: by ywp4 with SMTP id 4so1893201ywp.29 for ; Tue, 17 Aug 2010 01:46:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type; bh=Q1GYZdTHcjioymaJTlR1zj/iNcd74B7j+k402VyzElA=; b=OiHL+kb4kyvkb1URqpCAseVU3Da0jhhZtQ1uCvGQB2FBAziqqJBOwW0e7Ku1ak3CQx zx+yt4xM0L6UqtG8iD45kAA92qmV3j7hULDV01MVKIOHayRCuKd+xoL/iXBGhvFE7/az 24jwTMEb24VkjdRopsE0RNOoH0jKH+i9JcAEI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=a6LK/gh1P3UI50LOddyyIIPR9cETJoMPURtcwctD91aKt2pGL0zxFrDnS73RujoWru rI2P8BGNjX2WeMdumHfrg4kUjYgTiteivZ2qodBoaegxioyjOz0KCKPS0alFbGVxf3px 5atIUHatw3rUSO65WDcHXxL0MqWXALv8I65+s= MIME-Version: 1.0 Received: by 10.231.154.73 with SMTP id n9mr7560065ibw.10.1282034764373; Tue, 17 Aug 2010 01:46:04 -0700 (PDT) Sender: tyra3l@gmail.com Received: by 10.231.161.79 with HTTP; Tue, 17 Aug 2010 01:46:04 -0700 (PDT) In-Reply-To: References: Date: Tue, 17 Aug 2010 10:46:04 +0200 X-Google-Sender-Auth: 9M-XrERbmGHZ9oqhXivweOFkD78 Message-ID: To: RQuadling@googlemail.com Cc: Jingcheng Zhang , php-dev Content-Type: multipart/alternative; boundary=005045016771b86097048e00fabe Subject: Re: [PHP-DEV] Static initialization block support in Class? From: info@tyrael.hu (Ferenc Kovacs) --005045016771b86097048e00fabe Content-Type: text/plain; charset=UTF-8 Tue, Aug 17, 2010 at 10:04 AM, Richard Quadling wrote: > On 17 August 2010 08:39, Jingcheng Zhang wrote: > > Hello internals, > > > > I wonder whether it is possible to implement "static initialization > block" > > feature in PHP, for example: > > > > > class Foo { > > > > } > > class Bar { > > public static $baz = 'baz'; > > public static $foo; > > static { > > // After loading this file, self::$foo is initialized as a Foo > > instance. > > self::$foo = new Foo(); > > } > > } > > ?> > > > > Currently we have to do this outside the class definition as static > variable > > initialization is only limited to constant values. > > However in some circumstance, "dynamic" initialization of static variable > is > > expected and meaningful. > > > > Thanks in advance! > > > > -- > > Best regards, > > Jingcheng Zhang > > P.R.China > > > > Implementing a singleton method is a common solution and one that is > well understood and documented. > > Another option would be to put the initialisation immediately after > the class definition, so once the class is loaded, a static instance > is prepared. This saves the consumer of the class from having to do 1 > additional line of code. > > Or you could load the public static methods with a JIT call to prepare > the static instance. Overhead is that every call will have to test > self::$instance > > > There is probably some argument against "statics" being "dynamic" > though ... not my area of expertise to argue either way. > > -- > Richard Quadling. > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php > > This was brought up in the past: http://www.mail-archive.com/internals@lists.php.net/msg46458.html I still think that it's weird, that I can define a constant to a dynamic value (eg. by a complex expression or a function's return value), but I can't do that with the class consts. and with 5.3, we have two different kind of consts, you can define constants in compile time with const where you can't use expressions, and you can use the define method, where you can use expressions. and you can combine them: define("NOW", time()); var_dump(NOW); const BAR = NOW; var_dump(BAR); class baz{ const BAR = NOW; } var_dump(baz::BAR);' with that in mind, I think we could allow complex expression to the const: the expression will be stored as-is, and when it's referenced (JIT) then it will be evaluated. and this could be used also for variables also: class foo{ public $now = time(); } $foo = new foo; echo $foo->now; ps: I predict somebody will say: can of worms! :) Tyrael --005045016771b86097048e00fabe--