ID: 36885 Updated by: [EMAIL PROTECTED] Reported By: lta at lfdj dot com -Status: Open +Status: Feedback Bug Type: SPL related Operating System: solaris PHP Version: 5.1.2 New Comment:
I don't see any problems: <?php class test extends ArrayObject { public $pub = 1; public function __clone() { $this->pub = "cloned"; } } $a = new test; $b = clone $a; var_dump($a->pub); var_dump($b->pub); ?> int(1) string(6) "cloned" Did you even try to run your code? I doesn't work at all as you didn't instanciate the objects. Previous Comments: ------------------------------------------------------------------------ [2006-03-28 09:51:14] lta at lfdj dot com Description: ------------ When a __clone() function is defined for a class that extends arrayObject from SPL, there is no way to clone the objects contained in arrayObject. If you do same code for class not extending the SPL arrayObject but any other objectContainer, there is no problem. Reproduce code: --------------- class bidon { public $foo = "bidon 1"; } class test extends ArrayObject { public $pub = 1; public function __clone() { $this->pub = "cloned"; foreach ($this as $k=>$item) { $this[$k]= clone $item; $this[$k]->foo++; } } } if($original === $cloned2) { echo "bad master clone# $original $cloned2<br>"; } else { echo "good master clone<br>";} foreach ($original as $k=>$obj) { if($original[$k] === $cloned2[$k]) { echo "bad clone childs# $original[$k] $cloned2[$k]<br>"; } else { echo "good child clone<br>";} } Expected result: ---------------- good master clone good child clone good child clone Actual result: -------------- good master clone bad clone childs# Object id #7 Object id #7 bad clone childs# Object id #2 Object id #2 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=36885&edit=1