Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

restore_exception_handler(3) [php man page]

RESTORE_EXCEPTION_HANDLER(3)						 1					      RESTORE_EXCEPTION_HANDLER(3)

restore_exception_handler - Restores the previously defined exception handler function

SYNOPSIS
bool restore_exception_handler (void ) DESCRIPTION
Used after changing the exception handler function using set_exception_handler(3), to revert to the previous exception handler (which could be the built-in or a user defined function). RETURN VALUES
This function always returns TRUE. EXAMPLES
Example #1 restore_exception_handler(3) example <?php function exception_handler_1(Exception $e) { echo '[' . __FUNCTION__ . '] ' . $e->getMessage(); } function exception_handler_2(Exception $e) { echo '[' . __FUNCTION__ . '] ' . $e->getMessage(); } set_exception_handler('exception_handler_1'); set_exception_handler('exception_handler_2'); restore_exception_handler(); throw new Exception('This triggers the first exception handler...'); ?> The above example will output: [exception_handler_1] This triggers the first exception handler... SEE ALSO
set_exception_handler(3), set_error_handler(3), restore_error_handler(3), error_reporting(3). PHP Documentation Group RESTORE_EXCEPTION_HANDLER(3)

Check Out this Related Man Page

ERROREXCEPTION(3)							 1							 ERROREXCEPTION(3)

ErrorException

INTRODUCTION
An Error Exception. CLASS SYNOPSIS
ErrorException ErrorExceptionextends Exception Properties o protected int$severity Inherited properties o protected string$message o protected int$code o protected string$file o protected int$line Methods o public ErrorException::__construct NULL ([string $message = ""], [int $code], [int $severity = 1], [string $filename = __FILE__], [int $lineno = __LINE__], [Exception $previous]) o finalpublic int ErrorException::getSeverity (void ) Inherited methods o finalpublic string Exception::getMessage (void ) o finalpublic Exception Exception::getPrevious (void ) o finalpublic mixed Exception::getCode (void ) o finalpublic string Exception::getFile (void ) o finalpublic int Exception::getLine (void ) o finalpublic array Exception::getTrace (void ) o finalpublic string Exception::getTraceAsString (void ) o public string Exception::__toString (void ) o finalprivate void Exception::__clone (void ) PROPERTIES
o $severity -The severity of the exception EXAMPLES
Example #1 Use set_error_handler(3) to change error messages into ErrorException. <?php function exception_error_handler($severity, $message, $file, $line) { if (!(error_reporting() & $severity)) { // This error code is not included in error_reporting return; } throw new ErrorException($message, 0, $severity, $file, $line); } set_error_handler("exception_error_handler"); /* Trigger exception */ strpos(); ?> The above example will output something similar to: Fatal error: Uncaught exception 'ErrorException' with message 'strpos() expects at least 2 parameters, 0 given' in /home/bjori/tmp/ex.php:12 Stack trace: #0 [internal function]: exception_error_handler(2, 'strpos() expect...', '/home/bjori/php...', 12, Array) #1 /home/bjori/php/cleandocs/test.php(12): strpos() #2 {main} thrown in /home/bjori/tmp/ex.php on line 12 PHP Documentation Group ERROREXCEPTION(3)
Man Page