php-8.0.30-src/Zend/tests/exit_exception_handler.phpt

15 lines
172 B
PHP

--TEST--
Exception handler should not be invoked for exit()
--FILE--
<?php
set_exception_handler(function($e) {
var_dump($e);
});
exit("Exit\n");
?>
--EXPECT--
Exit