public
boolean
|
#
handle( unknown_type $errno, unknown_type $errstr, unknown_type $errfile, unknown_type $errline )
log the error and displays it in debug mode
log the error and displays it in debug mode
Parameters
- $errno
- contains the level of the error raised, as an integer
- $errstr
- contains the error message, as a string
- $errfile
- the filename that the error was raised in, as a string
- $errline
- the line number the error was raised at, as an integer
Returns
boolean always true because we don't want the php default error handler to process the
error again
|