mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
ae6f45ad45
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.
20 lines
260 B
PHP
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*
|
|
}
|