mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
b3e33be443
Fixes GH-10695 Closes GH-110905
15 lines
316 B
PHP
15 lines
316 B
PHP
--TEST--
|
|
GH-10695: Exceptions from output buffering handlers during shutdown are caught
|
|
--FILE--
|
|
<?php
|
|
set_exception_handler(function (\Throwable $exception) {
|
|
echo 'Caught: ' . $exception->getMessage() . "\n";
|
|
});
|
|
|
|
ob_start(function () {
|
|
throw new \Exception('ob_start');
|
|
});
|
|
?>
|
|
--EXPECT--
|
|
Caught: ob_start
|