mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
Added new test
This commit is contained in:
parent
15a23b1218
commit
721fc9e80d
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
|
Loading…
Reference in New Issue
Block a user