You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--TEST--
|
|
Creating recursive array on foreach using same variable
|
|
--INI--
|
|
zend.enable_gc=1
|
|
--SKIPIF--
|
|
<?php die("skip");?>
|
|
--FILE--
|
|
<?php
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
foreach (($a = array('a' => array('a' => &$a))) as $a) {
|
|
var_dump($a);
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
array(1) {
|
|
["a"]=>
|
|
*RECURSION*
|
|
}
|
|
|