mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
Added new test
This commit is contained in:
21
Zend/tests/foreach_008.phpt
Normal file
21
Zend/tests/foreach_008.phpt
Normal file
@@ -0,0 +1,21 @@
|
||||
--TEST--
|
||||
Nested foreach by reference and array modification
|
||||
--FILE--
|
||||
<?php
|
||||
$a = [0, 1, 2, 3];
|
||||
foreach ($a as &$x) {
|
||||
foreach ($a as &$y) {
|
||||
echo "$x - $y\n";
|
||||
if ($x == 0 && $y == 1) {
|
||||
unset($a[2]);
|
||||
unset($a[1]);
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
--EXPECT--
|
||||
0 - 0
|
||||
0 - 1
|
||||
0 - 3
|
||||
3 - 0
|
||||
3 - 3
|
||||
Reference in New Issue
Block a user