|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2013-02-26 07:30 UTC] littlexiang521 at gmail dot com
-PHP Version: 5.4.12
+PHP Version: 5.4.10
[2013-02-26 07:30 UTC] littlexiang521 at gmail dot com
[2013-02-26 07:31 UTC] littlexiang521 at gmail dot com
[2013-02-26 07:42 UTC] laruence@php.net
-Status: Open
+Status: Feedback
[2013-02-26 07:42 UTC] laruence@php.net
[2013-10-15 11:54 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 01:00:01 2025 UTC |
Description: ------------ class a{ public function __get($name) { switch ($name){ case 'foo': return 'bar'; case 'foofoo': return $this->foo; } } } $obj = new $a(); $a->foofoo; works with 5.3.x, but not with 5.4.x