ID: 34000 User updated by: shim at andersens dot org Reported By: shim at andersens dot org -Status: Feedback +Status: Open Bug Type: Class/Object related Operating System: FC3 PHP Version: 4.3.11 New Comment:
I havent tried the CVS version because I dont have access to a dev server to compile the CVS version. Sorry. Previous Comments: ------------------------------------------------------------------------ [2005-08-05 01:00:27] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php4-STABLE-latest.tar.gz For Windows: http://snaps.php.net/win32/php4-win32-STABLE-latest.zip Why didn't you try it before? ------------------------------------------------------------------------ [2005-08-05 00:53:17] shim at andersens dot org Traced it down to a line that read <? function &Param($name) { return @$this->params[$name]; } ?> changing it to ... $v = $this->params[$name]; return $v; ... fixes it. Is this the same issue fixed in 4.4? ------------------------------------------------------------------------ [2005-08-05 00:35:11] [EMAIL PROTECTED] Your code works perfectly fine here. Please provide the real one. ------------------------------------------------------------------------ [2005-08-05 00:27:08] shim at nadersens dot org foo('a','b',c') should be foo('a','b','c') also, are varibables are references to eachother. Changing one changes them all. ------------------------------------------------------------------------ [2005-08-05 00:16:23] [EMAIL PROTECTED] Thank you for this bug report. To properly diagnose the problem, we need a short but complete example script to be able to reproduce this bug ourselves. A proper reproducing script starts with <?php and ends with ?>, is max. 10-20 lines long and does not require any external resources such as databases, etc. If possible, make the script source available online and provide an URL to it here. Try to avoid embedding huge scripts into the report. The code you have provided basically doesn't work (missing quotes and semicolons). ------------------------------------------------------------------------ The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online at http://bugs.php.net/34000 -- Edit this bug report at http://bugs.php.net/?id=34000&edit=1
