Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:49436 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 2180 invoked from network); 17 Aug 2010 08:04:52 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 17 Aug 2010 08:04:52 -0000 Authentication-Results: pb1.pair.com header.from=rquadling@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=rquadling@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 74.125.82.170 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: rquadling@gmail.com X-Host-Fingerprint: 74.125.82.170 mail-wy0-f170.google.com Received: from [74.125.82.170] ([74.125.82.170:50138] helo=mail-wy0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 33/51-25044-3A24A6C4 for ; Tue, 17 Aug 2010 04:04:52 -0400 Received: by wye20 with SMTP id 20so7321435wye.29 for ; Tue, 17 Aug 2010 01:04:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:reply-to :in-reply-to:references:from:date:message-id:subject:to:cc :content-type:content-transfer-encoding; bh=Q0eUd/UMgifNRCig1DvKMXJQoSteQauGr3IddZE9gBI=; b=LhmbN55joyt/AIy/RNLK/9KMmWZ7cogzG48Izzw38hOKbUXHKwRrHRoqAI86b8hPLH lBAiVNUCZ3aMTiHfyhpxypP6eGwI3/J45uWv8MdhM3SK+KElHwGVzkhVTmeotXcYVlSc txZ2Sy+HmCLPE4SACXgkEIePWM3jQpzMdZAuk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:from:date:message-id :subject:to:cc:content-type:content-transfer-encoding; b=jfSixX0GFKJEjYCnh71J0krlIukk5znQqIp54+rQcpvZ8Jdcmd71jp8qQChY+PLL4B yLe7leiBZK+zBqmqPKM7fHujtSofyXPn5WWm++H/UQylfs/yHldic/TdsYFrfv4EDpv5 B0cES2hX71LEXhxuAEbmHE1zizAPBqtTj/8x4= Received: by 10.227.38.143 with SMTP id b15mr77011wbe.178.1282032288962; Tue, 17 Aug 2010 01:04:48 -0700 (PDT) MIME-Version: 1.0 Received: by 10.216.7.196 with HTTP; Tue, 17 Aug 2010 01:04:26 -0700 (PDT) Reply-To: RQuadling@googlemail.com In-Reply-To: References: Date: Tue, 17 Aug 2010 09:04:26 +0100 Message-ID: To: Jingcheng Zhang Cc: php-dev Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [PHP-DEV] Static initialization block support in Class? From: rquadling@gmail.com (Richard Quadling) 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 { > =C2=A0 =C2=A0public static $baz =3D 'baz'; > =C2=A0 =C2=A0public static $foo; > =C2=A0 =C2=A0static { > =C2=A0 =C2=A0 =C2=A0 =C2=A0// After loading this file, self::$foo is init= ialized as a Foo > instance. > =C2=A0 =C2=A0 =C2=A0 =C2=A0self::$foo =3D new Foo(); > =C2=A0 =C2=A0} > } > ?> > > Currently we have to do this outside the class definition as static varia= ble > 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. --=20 Richard Quadling.