restore_error_handler

(PHP 4 >= 4.0.1, PHP 5, PHP 7, PHP 8)

restore_error_handler還原之前的錯(cuò)誤處理函數(shù)

說明

restore_error_handler(): bool

在使用 set_error_handler() 改變錯(cuò)誤處理函數(shù)之后,此函數(shù)可以 用于還原之前的錯(cuò)誤處理程序(可以是內(nèi)置的或者也可以是用戶所定義的函數(shù))。

返回值

該函數(shù)總是返回 true

范例

示例 #1 restore_error_handler() 范例

如果是 unserialize() 導(dǎo)致了一個(gè)錯(cuò)誤,接下來 會(huì)恢復(fù)原來的錯(cuò)誤處理函數(shù)。

<?php
function unserialize_handler($errno$errstr)
{
    echo 
"Invalid serialized value.\n";
}

$serialized 'foo';
set_error_handler('unserialize_handler');
$original unserialize($serialized);
restore_error_handler();
?>

以上例程會(huì)輸出:

Invalid serialized value.

參見