ID: 15025 Comment by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Scripting Engine problem Operating System: FreeBSD, Linux PHP Version: 4.1.1 New Comment:
Verified with 4.2.3 on Windows 2000 too. Previous Comments: ------------------------------------------------------------------------ [2002-01-13 22:32:27] [EMAIL PROTECTED] $c should not have been affected by the assignment to $b because $c should only be a copy to $a. What happened is the first echo shows 5 and after assignment to $b, the content of $c changes to 1 when it should stay as 5. ------------------------------------------------------------------------ [2002-01-13 22:18:55] [EMAIL PROTECTED] You can guess / see from this simple script: $a = array(5); $b =& $a[0]; $c = $a; echo $c[0]; $b = 1; echo $c[0]; ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=15025&edit=1