summaryrefslogtreecommitdiff
path: root/Zend/tests/foreach_005.phpt
blob: 6ed9fe940bf2fb6161d8123866ea1abeee19f511 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Nested foreach by reference on the same array
--FILE--
<?php
$a = [1,2,3];
foreach($a as &$x) {
	foreach($a as &$y) {
		echo "$x-$y\n";
		$y++; 
	}
}
?>
--EXPECT--
1-1
2-2
2-3
3-2
3-3
4-4
5-3
5-4
5-5