mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
15 lines
206 B
PHP
15 lines
206 B
PHP
--TEST--
|
|
Bug #35106 (nested foreach fails when array variable has a reference)
|
|
--FILE--
|
|
<?php
|
|
$a=array("1","2");
|
|
$b=&$a;
|
|
foreach($a as $i){
|
|
echo $i;
|
|
foreach($a as $p);
|
|
}
|
|
echo "\n";
|
|
?>
|
|
--EXPECT--
|
|
12
|