error_get_last
(PHP 5 >= 5.2.0)
error_get_last — Get the last occurred error
说明
array error_get_last ( void )Gets information about the last error that occurred.
返回值
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.
范例
Example #1 An error_get_last() example 以上例程的输出类似于:
<?php
echo $a;
print_r(error_get_last());
?>
Array
(
[type] => 8
[message] => Undefined variable: a
[file] => C:WWWindex.php
[line] => 2
)
参见
- Error constants
- Variable $php_errormsg
- Directive display_errors
- Directive html_errors
- Directive xmlrpc_errors