restore_error_handling() 函數恢複先前的錯誤處理程序。它在使用 set_error_handler() 更改錯誤處理程序函數後使用,以恢複到先前的錯誤處理程序(可以是 內置 或用戶定義的函數)
用法
restore_error_handler()
參數
NA
返回
restore_error_handler() 函數返回 TRUE。
示例
下麵是一個例子——
<?php
function unserialize_handler($errno, $errstr) {
  echo "Custom error:Invalid hello value.\n";
}
$hello = 'pqrs'; set_error_handler('unserialize_handler');
$original = unserialize($hello);
restore_error_handler();
?>
輸出
Custom error:Invalid hello value.
相關用法
- PHP restore_exception_handler()用法及代碼示例
- PHP reset()用法及代碼示例
- PHP rename( )用法及代碼示例
- PHP readfile( )用法及代碼示例
- PHP rewind( )用法及代碼示例
- PHP realpath_cache_get()用法及代碼示例
- PHP realpath( )用法及代碼示例
- PHP rewinddir()用法及代碼示例
- PHP read_exif_data()用法及代碼示例
- PHP readfile()用法及代碼示例
- PHP rename()用法及代碼示例
- PHP rewind()用法及代碼示例
- PHP readdir()用法及代碼示例
- PHP rmdir()用法及代碼示例
- PHP round()用法及代碼示例
- PHP random_int()用法及代碼示例
- PHP round( )用法及代碼示例
注:本文由純淨天空篩選整理自George John大神的英文原創作品 restore_error_handler() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。