summaryrefslogtreecommitdiff
path: root/Zend/tests/foreach_007.phpt
blob: b99bc73ebe448723ae01b663af34970b8764c37f (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