PHP set_exception_handler()函数
语法
string set_exception_handler ( callback $exception_handler );
定义和用法
如果在try/catch块中没有捕获到异常,该函数将设置默认的异常处理程序。在调用exception_handler之后,执行将停止。
参数
序号 | 参数与描述 |
---|---|
1 | exception_handler 当未捕获异常发生时要调用的函数的名称。在调用set_exception_handler()之前,必须先定义这个函数。这个处理函数需要接受一个参数,即被抛出的异常对象。 |
返回值
返回先前定义的异常处理程序的名称,如果发生错误则返回NULL。如果没有定义先前的处理程序,则也返回NULL。
示例
以下是使用此函数的示例 –
<?php
function exception_handler(exception) {
echo "Uncaught exception is : " ,exception->getMessage(), "\n";
}
set_exception_handler('exception_handler');
set_exception_handler();
throw new Exception('Not Found Exception');
echo "not included Executed\n";
?>
这将产生以下结果 −
Uncaught exception is: Not Found Exception