ID:               37225
 Updated by:       [EMAIL PROTECTED]
 Reported By:      max at hightech dot lv
-Status:           Assigned
+Status:           Bogus
 Bug Type:         Scripting Engine problem
 Operating System: ALL
 PHP Version:      5.1.2
 Assigned To:      dmitry
 New Comment:

Duplicate of #37917.
You're copying and modifying refernces and this is expected.


Previous Comments:
------------------------------------------------------------------------

[2006-04-27 16:07:28] max at hightech dot lv

Description:
------------
looks like after copy reference to some variable, source-variable start
to be reference it self. Is it correct? In result we can't make copy
array, if some of it element was used as reference.

Reproduce code:
---------------
$arr = array("TEXT" => "test");
$tmp =& $arr["TEXT"];
$zz = $arr;
$zz["TEXT"] = 1;
var_dump($arr);


Expected result:
----------------
array(1) { ["TEXT"]=> string(4) "test" }

Actual result:
--------------
array(1) { ["TEXT"]=> &int(1) }


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=37225&edit=1

Reply via email to