PHP error_get_last() 函数
Example
返回最后发生的错误:
<?php
echo $test;
print_r(error_get_last()
);
?>
以上代码的输出类似这样:
Array ( [type] => 8 [message] => Undefined variable: test [file] => C:\webfolder\test.php [line] => 2 )
定义和用法
error_get_last() 函数返回最后发生的错误(以关联数组的形式)。
关联数组包含四个键:
- [type] - 描述错误类型
- [message] - 描述错误消息
- [file] - 描述发生错误的文件
- [line] - 描述发生错误的行号
语法
error_get_last();
技术细节
返回值: |
返回了一个关联数组,描述了最后错误的信息,以该错误的 "type"、 "message"、"file" 和 "line" 为数组的键。 如果该错误由 PHP 内置函数导致的,"message"会以该函数名开头。 如果还没有错误则返回 NULL。 |
---|---|
PHP 版本: | 5.2+ |