ID: 30959 User updated by: joel at zmail dot pt Reported By: joel at zmail dot pt -Status: No Feedback +Status: Open Bug Type: Zend Engine 2 problem Operating System: * -PHP Version: 5.0.2 +PHP Version: php5-200503080930 New Comment:
I've just tested with latest php 5 (php5-200503080930) and the problem is not solved. Previous Comments: ------------------------------------------------------------------------ [2005-03-08 01:00:09] php-bugs at lists dot php dot net No feedback was provided for this bug for over a week, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open". ------------------------------------------------------------------------ [2005-02-28 21:20:25] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php5-latest.tar.gz For Windows: http://snaps.php.net/win32/php5-win32-latest.zip ------------------------------------------------------------------------ [2004-12-02 12:43:27] joel at zmail dot pt Description: ------------ __call doesn't return by reference Reproduce code: --------------- class A{ private $x = 123; public function & __call($m,$a){ return $this->x; } } $a = new A(); $x = & $a->UndefMethod(); $x = 789; $y = & $a->UndefMethod(); Expected result: ---------------- $y should be 789, but it is 123 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=30959&edit=1