欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

PHP restore_exception_handler() 函數

定義和用法

restore_exception_handler() 函數恢復之前的異常處理程序,該程序是由 set_exception_handler() 函數改變的。

該函數永遠返回 true。

語法

restore_exception_handler()

提示和注釋

提示:之前的異常處理程序可能是在異常處理程序或用戶自定義函數中構建的。

例子

<?php
restore_exception_handler();

throw new Exception('Uncaught Exception occured');
?>

輸出:

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