|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2008-08-10 00:52 UTC] jtaal at eljakim dot nl
Description: ------------ Since bug http://bugs.php.net/43736 is called Bogus without any explaination tony2001: Why don't you explain WHY this isn't a bug! Obivously you've thought about it, why not explain it. What is the use of searching for bugs when the answers aren't there!!?! The reference to reading *the manual* is just ridiculous. Maybe you could make a Documentation Problem out of it, because I'm getting the samen NOTICE in the same situation. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Tue Jun 16 05:00:02 2026 UTC |
<?php class C { var $a = 5; function &__get($name) { return $this->a; } } $obj = new C; $x = &$obj->b; $x = 6; var_dump($obj->a); ?>