PHP restore_exception_handler() 函数
PHP restore_exception_handler() 函数用于恢复之前的异常处理程序
该函数用于在通过 set_exception_handler() 函数改变后恢复之前的异常处理程序
函数原型
restore_exception_handler()
返回值
总是返回 TRUE
注意
之前的异常处理程序可能是在内建的异常处理程序或用户自定义函数中构建的
范例
<?php restore_exception_handler(); throw new Exception('Uncaught Exception occured');
运行以上 PHP 范例,输出结果如下
Fatal error: Uncaught exception 'Exception' with message'Uncaught Exception occured' in C:\webfolder\test.php:4 Stack trace: #0 {main} thrown in C:\webfolder\test.php on line 4