Patch bug60082.phpt for SPL related Bug #60082
Patch version 2011-10-18 12:51 UTC
Return to Bug #60082 |
Download this patch
Patch Revisions:
Developer: laruence@php.net
--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
|