php8.5
Home/ Manual/ errorfunc / functions/ restore_error_handler

restore_error_handler

PHP function Edit on GitHub ✎

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

Restores the previous error handler function

Description

restore_error_handler(): true

Pops the error handler that was active before the most recent call to set_error_handler() off the internal stack of error handlers and makes it active again, together with the error_levels mask it was registered with. The restored handler could be the built-in or a user defined function.

Calling this function more often than set_error_handler() leaves the built-in error handler active; no error is raised.

Parameters Parameters

Return Values

Always

Examples

restore_error_handler() example

Decide if unserialize() caused an error, then restore the original error handler.

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

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

The above example will output:

output
Invalid serialized value.

See Also

Source: reference/errorfunc/functions/restore-error-handler.xml · from the official PHP manual (php/doc-en)