mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
First pass at moving `Zend/tests/gh*` tests to existing sub directories Work towards GH-15631
19 lines
360 B
PHP
19 lines
360 B
PHP
--TEST--
|
|
GH-10695: Exceptions in destructor during shutdown are caught
|
|
--FILE--
|
|
<?php
|
|
class Foo {
|
|
public function __destruct() {
|
|
throw new \Exception(__METHOD__);
|
|
}
|
|
}
|
|
|
|
set_exception_handler(function (\Throwable $exception) {
|
|
echo 'Caught: ' . $exception->getMessage() . "\n";
|
|
});
|
|
|
|
const FOO = new Foo;
|
|
?>
|
|
--EXPECT--
|
|
Caught: Foo::__destruct
|