ID: 34490 Updated by: [EMAIL PROTECTED] Reported By: phpbug at wethmar dot demon dot nl -Status: Open +Status: Bogus Bug Type: Class/Object related Operating System: linux, 2.6 kernel, apache 2.6 PHP Version: 5.1.0RC1 New Comment:
Thank you for taking the time to write to us, but this is not a bug. Please double-check the documentation available at http://www.php.net/manual/ and the instructions on how to report a bug at http://bugs.php.net/how-to-report.php Previous Comments: ------------------------------------------------------------------------ [2005-09-13 11:42:45] phpbug at wethmar dot demon dot nl Description: ------------ Code witch works in PHP4 and 5.0 results in an error in 5.1.0 rc1: PHP Fatal error: Cannot re-assign $this. It can be fixed by removing the &. May be its no bug, but the error message is not clear to me: $this isn't assigned; $temp is. Reproduce code: --------------- <html> <body> <? class test { function doit() { $temp = &$this; return $temp; } } $obj = new test; $result = $obj->doit(); ?> Ok<br> </body> </html> Expected result: ---------------- OK Actual result: -------------- [Tue Sep 13 12:36:28 2005] [error] [client 192.168.100.46] PHP Fatal error: Cannot re-assign $this in /home/httpd/sites/devrw/root/test.php on line 7 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=34490&edit=1