restore_error_handler — 還原之前的錯誤處理函數
說明
bool restore_error_handler ( void )
在使用 #set_error_handler#() 改變錯誤處理函數之後,此函數可以用來還原先前的錯誤處理程序(可以是內建的或也可以是使用者定義的函數)。
傳回值
該函數總是回傳 TRUE 。
restore_error_handler() 實例
如果是 unserialize() 導致了一個錯誤,接下來 會恢復原來的錯誤處理函數。
<?php function unserialize_handler ( $errno , $errstr ) { echo "Invalid serialized value.\n" ; } $serialized = 'foo' ; set_error_handler ( 'unserialize_handler' ); $original = unserialize ( $serialized ); restore_error_handler (); ?>
以上例程會輸出:
Invalid serialized value.
restore_exception_handler — 還原先前定義過的異常處理函數。
說明
bool restore_exception_handler ( void )
在使用set_exception_handler() 改變異常處理函數之後,此函數可以用於還原之前的異常處理程序(可以是內建的或也可以是使用者所定義的函數)。
傳回值
該函數總是傳回 TRUE 。
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...' ); ?>
以上程式會輸出:
[exception_handler_1] This triggers the first exception handler...
以上是php restore_error_handler()函數與restore_exception_handler()函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!