ERROR_GET_LAST(3) 1 ERROR_GET_LAST(3)
error_get_last - Get the last occurred error
SYNOPSIS
array error_get_last (void )
DESCRIPTION
Gets information about the last error that occurred.
RETURN VALUES
Returns an associative array describing the last error with keys "type", "message", "file" and "line". If the error has been caused by a
PHP internal function then the "message" begins with its name. Returns NULL if there hasn't been an error yet.
EXAMPLES
Example #1
An error_get_last(3) example
<?php
echo $a;
print_r(error_get_last());
?>
The above example will output something similar to:
Array
(
[type] => 8
[message] => Undefined variable: a
[file] => C:WWWindex.php
[line] => 2
)
SEE ALSO
Error constants, Variable $php_errormsg, Directive $display_errors, Directive $html_errors, Directive $xmlrpc_errors.
PHP Documentation Group ERROR_GET_LAST(3)