summaryrefslogtreecommitdiff
path: root/Zend/tests/foreach_007.phpt
blob: 09cf60246ef5748b76d8a56c24999d86a9ddb680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--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