mirror of
https://github.com/php/php-src.git
synced 2026-04-22 07:28:09 +02:00
Files
4273ec8551097d6050dc2e400aaa590a8a88fe2a
T
27 lines
464 B
PHP
27 lines
464 B
PHP
--TEST--
|
|
Bug #63206 Fully support exception_handler stacking, even with null
|
|
--FILE--
|
|
<?php
|
|
|
|
set_exception_handler(function() {
|
|
echo 'First handler' . PHP_EOL;
|
|
});
|
|
|
|
set_exception_handler(function() {
|
|
echo 'Second handler' . PHP_EOL;
|
|
});
|
|
|
|
set_exception_handler(null);
|
|
|
|
set_exception_handler(function() {
|
|
echo 'Fourth handler' . PHP_EOL;
|
|
});
|
|
|
|
restore_exception_handler();
|
|
restore_exception_handler();
|
|
|
|
throw new Exception();
|
|
?>
|
|
--EXPECT--
|
|
Second handler
|