mirror of
https://github.com/php/php-src.git
synced 2024-12-22 08:20:23 +08:00
21 lines
276 B
Plaintext
21 lines
276 B
Plaintext
|
--TEST--
|
||
|
Bug #67111: Memory leak when using "continue 2" inside two foreach loops
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
$array1 = [1, 2, 3];
|
||
|
$array2 = [1, 2, 3];
|
||
|
|
||
|
foreach ($array1 as $x) {
|
||
|
foreach ($array2 as $y) {
|
||
|
echo "$x.$y\n";
|
||
|
continue 2;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
1.1
|
||
|
2.1
|
||
|
3.1
|