mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
14 lines
183 B
PHP
14 lines
183 B
PHP
--TEST--
|
|
Foreach by reference and inserting new element when we are already at the end
|
|
--FILE--
|
|
<?php
|
|
$a = [1];
|
|
foreach($a as &$v) {
|
|
echo "$v\n";
|
|
$a[1]=2;
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
1
|
|
2
|