|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-07-31 14:59 UTC] zeev at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 23:00:02 2025 UTC |
The following piece of code is not compatible with the current behaviour since PHP 3.0.x (I don't remember exactly, I wasn't counting) : class toto { var $meuuh; function toto() { $this->meuuh = 1; } } class titi extends toto { } $titi = new titi; echo "the result is : ".$titi->meuuh;