php-src/ext/spl/tests/iterator_035.phpt
2014-06-10 23:24:11 -07:00

18 lines
353 B
PHP

--TEST--
SPL: ArrayIterator and values assigned by reference
--FILE--
<?php
$tmp = 1;
$a = new ArrayIterator();
$a[] = $tmp;
$a[] = &$tmp;
echo "Done\n";
?>
--EXPECTF--
Notice: Indirect modification of overloaded element of ArrayIterator has no effect in %s on line %d
Fatal error: Cannot assign by reference to overloaded object in %s on line %d