TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
395 B
20 lines
395 B
--TEST--
|
|
Bug #76778 (array_reduce leaks memory if callback throws exception)
|
|
--SKIPIF--
|
|
<?php die("skip memory leak detection in test environment adds output"); ?>
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
array_reduce(
|
|
[1],
|
|
function ($carry, $item) {
|
|
throw new Exception;
|
|
},
|
|
range(1, 3)
|
|
);
|
|
} catch (Exception $e) {
|
|
}
|
|
echo "===DONE===\n";
|
|
?>
|
|
--EXPECT--
|
|
===DONE===
|
|
|