Mantis - Quercus
Viewing Issue Advanced Details
3607 minor always 07-23-09 02:45 05-11-10 17:48
sblommers  
nam  
normal  
closed 4.0.0  
fixed  
none    
none 4.0.7  
0003607: PHP clone object is ignored?
$obj->data=array();
$obj->data['tree']=array('first');

$obj2=clone $obj;
$obj2->data['tree']=array("be changed!");
var_dump($obj);
var_dump($obj2);

will display:
object(stdClass) (1) {
["data"]=>
array(1) {
["tree"]=>
array(1) {
[0]=>
string(11) "be changed!"
}
}
}
object(stdClass) (1) {
["data"]=>
array(1) {
["tree"]=>
array(1) {
[0]=>
string(11) "be changed!"
}
}
}

Notes
(0004569)
nam   
05-11-10 17:48   
php/090t