mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
16 lines
230 B
PHP
Executable File
16 lines
230 B
PHP
Executable File
--TEST--
|
|
Bug #34065 (throw in foreach causes memory leaks)
|
|
--FILE--
|
|
<?php
|
|
$data = file(__FILE__);
|
|
try {
|
|
foreach ($data as $line) {
|
|
throw new Exception("error");
|
|
}
|
|
} catch (Exception $e) {
|
|
echo "ok\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
ok
|