38 lines
587 B
PHP
38 lines
587 B
PHP
--TEST--
|
|
Loop var dtor throwing exception during return inside try/catch inside finally
|
|
--FILE--
|
|
<?php
|
|
|
|
class Dtor {
|
|
public function __destruct() {
|
|
throw new Exception(2);
|
|
}
|
|
}
|
|
|
|
function test() {
|
|
try {
|
|
throw new Exception(1);
|
|
} finally {
|
|
try {
|
|
foreach ([new Dtor] as $v) {
|
|
unset($v);
|
|
return 42;
|
|
}
|
|
} catch (Exception $e) {
|
|
}
|
|
}
|
|
}
|
|
|
|
try {
|
|
test();
|
|
} catch (Exception $e) {
|
|
echo $e, "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Exception: 1 in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): test()
|
|
#1 {main}
|