|
get_exception_handlerGets the user-defined exception handler function Description
callablenull get_exception_handler()
Returns the current exception handler function, if any. ParametersThis function has no parameters. Return Values
Returns the currently defined exception handler.
If no handler is defined, The returned handler is the exact callable value that was passed to set_exception_handler to define it. Examples
Example #1 get_exception_handler example
NotesTip
Prior to PHP 8.5.0, this functionality can be provided by the following polyfill:
See Also
|