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