用法
bool restore_error_handler ( void );
定义和用法
在使用 set_error_handler() 更改错误处理程序函数后使用此函数,以恢复到先前的错误处理程序(可以是 内置 或用户定义的函数)
参数
Sr.No | 参数及说明 |
---|---|
1 |
void NA |
返回值
此函数始终返回 TRUE。
示例
下面是这个函数的用法~
<?php
function unserialize_handler($errno, $errstr) {
echo "Invalid hello value.\n";
}
$hello = 'abc';
set_error_handler('unserialize_handler');
$original = unserialize($hello);
restore_error_handler();
?>
这将产生以下结果 -
Invalid hello value.
相关用法
- PHP restore_error_handler()用法及代码示例
- 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 - Function restore_error_handler()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。