>
> class foo {
>
> static public $a = 1;
>
> public function __construct() {
>
> echo $this->a; /* does not work */
>
> echo foo::$a; /* work */echo self::$a; /* work */ > > } > > } > > > > Can someone please explain to me why I have to call $a outside the class to > get the value? $a is attached to the class, not any particular instance of the class. -- Teach a man to fish... NEW? | http://www.catb.org/~esr/faqs/smart-questions.html STFA | http://marc.theaimsgroup.com/?l=php-general&w=2 STFM | http://php.net/manual/en/index.php STFW | http://www.google.com/search?q=php LAZY | http://mycroft.mozdev.org/download.html?name=PHP&submitform=Find+search+plugins
signature.asc
Description: OpenPGP digital signature
