php-src/Zend/tests/foreach_002.phpt

20 lines
260 B
Plaintext
Raw Normal View History

2008-03-12 20:58:12 +08:00
--TEST--
Creating recursive array on foreach using same variable
--INI--
zend.enable_gc=1
2008-03-12 20:58:12 +08:00
--FILE--
<?php
error_reporting(E_ALL);
foreach (($a = array('a' => array('a' => &$a))) as $a) {
2020-02-04 05:52:20 +08:00
var_dump($a);
2008-03-12 20:58:12 +08:00
}
?>
--EXPECT--
array(1) {
["a"]=>
*RECURSION*
2008-03-12 20:58:12 +08:00
}