PHP error_get_last() Function
Example
Return the last error that occurred:
<?php
echo $test;
print_r(error_get_last());
?>
Try it Yourself »
Definition and Usage
The error_get_last() function returns the last error that occurred (as an associative array).
The associative array contains four keys:
- [type] - Describes the error type
- [message] - Describes the error message
- [file] - Describes the file where the error occurred
- [line] - Describes the line where the error occurred
Syntax
error_get_last();
Technical Details
Return Value: | Returns an associative array describing the last error with keys: type, message, file, and line. Returns NULL if no error has occurred yet |
---|---|
PHP Version: | 5.2+ |
PHP Error Reference