(PHP 4 >= 4.0.1, PHP 5, PHP 7)
restore_error_handler — 以前のエラーハンドラ関数を回復する
set_error_handler() を使用してエラーハンドラ関数を 変更した後、元のエラーハンドラ(組込またはユーザー定義関数)に戻すために 使用されます。
この関数は常に TRUE
を返します。
例1 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.