This commit is contained in:
Xinchen Hui 2011-10-19 02:28:53 +00:00
parent 6da5dfd0ac
commit d2c8d30bb9

14
ext/spl/tests/bug60082.phpt Executable file
View file

@ -0,0 +1,14 @@
--TEST--
Bug #60082 (100% CPU / when using references with ArrayObject(&$ref))
--FILE--
<?php
$test = array();
$test = new ArrayObject(&$test);
$test['a'] = $test['b'];
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
Deprecated: Call-time pass-by-reference has been deprecated in %sbug60082.php on line %d
Fatal error: main(): Array was modified outside object and made a recursive object in %sbug60082.php on line %d