PHP的restore_exception_handler()函数用于恢复之前设置的异常处理函数。
使用方法如下:
function customExceptionHandler($exception) {
echo "Caught exception: " . $exception->getMessage();
}
set_exception_handler('customExceptionHandler');
throw new Exception("Something went wrong!");
restore_exception_handler();
注意事项:
使用set_exception_handler()函数设置的异常处理函数会在整个脚本执行期间保持有效,除非使用restore_exception_handler()函数进行恢复。
restore_exception_handler()函数没有参数。