PHP restore_exception_handler() 函數(shù)
PHP restore_exception_handler() 函數(shù)

定義和用法
restore_exception_handler() 函數(shù)恢復(fù)之前的異常處理程序。
該函數(shù)用于在通過(guò) set_exception_handler() 函數(shù)改變后恢復(fù)之前的異常處理程序。
該函數(shù)總是返回 TRUE。
語(yǔ)法
restore_exception_handler()
提示和注釋
提示:之前的異常處理程序可能是在內(nèi)建的異常處理程序或用戶自定義函數(shù)中構(gòu)建的。
實(shí)例
<?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

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