php-src/Zend/tests/gh10695_1.phpt
Ilija Tovilo b3e33be443
Forward shutdown exceptions to user error handlers
Fixes GH-10695
Closes GH-110905
2023-06-15 17:11:22 +02:00

17 lines
418 B
PHP

--TEST--
GH-10695: Exceptions in register_shutdown_function() are caught by set_exception_handler()
--FILE--
<?php
set_exception_handler(function (\Throwable $exception) {
echo 'Caught: ' . $exception->getMessage() . "\n";
});
register_shutdown_function(function () {
echo "register_shutdown_function()\n";
throw new \Exception('shutdown');
});
?>
--EXPECT--
register_shutdown_function()
Caught: shutdown