PHP restore_exception_handler() 函數
PHP restore_exception_handler() 函數

定義和用法
restore_exception_handler() 函數恢復之前的異常處理程序。
該函數用于在通過 set_exception_handler() 函數改變后恢復之前的異常處理程序。
該函數總是返回 TRUE。
語法
restore_exception_handler()
提示和注釋
提示:之前的異常處理程序可能是在內建的異常處理程序或用戶自定義函數中構建的。
實例
<?php
restore_exception_handler();
throw new Exception('Uncaught Exception occured');
?>
restore_exception_handler();
throw new Exception('Uncaught Exception occured');
?>
上面代碼的輸出如下所示:
Fatal error: Uncaught exception 'Exception' with message
'Uncaught Exception occured' in C:webfoldertest.php:4
Stack trace: #0 {main} thrown in C:webfoldertest.php on line 4
'Uncaught Exception occured' in C:webfoldertest.php:4
Stack trace: #0 {main} thrown in C:webfoldertest.php on line 4

相關文章
- PHP 運算符
- PHP Switch 語句
- PHP 命名空間 namespace
- PHP array_chunk() 函數
- PHP array_combine() 函數
- PHP array_count_values() 函數
- PHP array_flip() 函數
- PHP array_intersect_uassoc() 函數
- PHP array_pop() 函數
- PHP array_push() 函數
- PHP array_splice() 函數
- PHP array_uintersect_uassoc() 函數
- PHP compact() 函數
- PHP end() 函數
- PHP next() 函數
- PHP pos() 函數
- PHP prev() 函數
- PHP 5 Calendar 函數
- PHP Filter 函數
- PHP 5 Math 函數