(PHP 5, PHP 7, PHP 8)
restore_exception_handler — 恢復(fù)之前定義過(guò)的異常處理函數(shù)。
在使用 set_exception_handler() 改變異常處理函數(shù)之后,此函數(shù)可以 用于還原之前的異常處理程序(可以是內(nèi)置的或者也可以是用戶所定義的函數(shù))。
該函數(shù)總是返回 true
。
示例 #1 restore_exception_handler() 范例
<?php
function exception_handler_1(Exception $e)
{
echo '[' . __FUNCTION__ . '] ' . $e->getMessage();
}
function exception_handler_2(Exception $e)
{
echo '[' . __FUNCTION__ . '] ' . $e->getMessage();
}
set_exception_handler('exception_handler_1');
set_exception_handler('exception_handler_2');
restore_exception_handler();
throw new Exception('This triggers the first exception handler...');
?>
以上例程會(huì)輸出:
[exception_handler_1] This triggers the first exception handler...