February 2013
Intermediate to advanced
538 pages
20h 55m
English
set_exception_handler
callable set_exception_handler(callable function)Sets the named function as the current exception handler. The
exception handler is called whenever an exception is thrown in a
try...catch block, but is not
caught; the function can do whatever it wants, but typically will
print an error message and clean up after a critical error
happens.
The user-defined function is called with one parameter—the exception object that was thrown.
set_exception_handler()
returns the previously installed exception-handler function, an empty
string if no previous handler was set, or false if an error occurred while setting the
error handler (e.g., when function doesn’t
exist).
Read now
Unlock full access