It r restores the previous exception handler
Example
<?php
function customError($errno, $errstr, $errfile, $errline) {
echo $errno.””.$errstr.” , File name – “.$errfile.” at line No”.$errline;
}
set_error_handler(“customError”);
$val=5;
if ($val>1) trigger_error(“An error occured”);
restore_error_handler();
if ($val>5) trigger_error(“An error occured”);
?>
Output
exception_handler_1 – This triggers the first exception handler…