PHP restore_error_handler()函数
语法
bool restore_error_handler ( void );
定义和用法
此函数在使用set_error_handler()更改错误处理程序函数之后使用,以恢复到先前的错误处理程序(可以是内建的或用户定义的函数)。
参数
Sr.No | Parameter & Description |
---|---|
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.