php-src/Zend/tests/foreach_002.phpt
Nikita Popov ae6f45ad45 var_dump(): Don't skip recursion detection on first level
This is confusing. The current output doesn't make it clear that
we're in fact recursing to the top-level structure.

Closes GH-5171.
2020-02-12 11:25:50 +01:00

20 lines
260 B
PHP

--TEST--
Creating recursive array on foreach using same variable
--INI--
zend.enable_gc=1
--FILE--
<?php
error_reporting(E_ALL);
foreach (($a = array('a' => array('a' => &$a))) as $a) {
var_dump($a);
}
?>
--EXPECT--
array(1) {
["a"]=>
*RECURSION*
}