|
restore_exception_handlerRestores the previously defined exception handler function Description
true restore_exception_handler()
Used after changing the exception handler function using set_exception_handler, to revert to the previous exception handler (which could be the built-in or a user defined function). ParametersThis function has no parameters. Return Values
Always returns Examples
Example #1 restore_exception_handler example
The above example will output: [exception_handler_1] This triggers the first exception handler... See Also
|