error_get_last() 函数获取作为关联数组发生的最后一个错误。关联数组包含四个键 -
[type] - 描述错误类型
[message] - 描述错误消息
[file] - 描述发生错误的文件
[line] - 描述发生错误的行
用法
error_get_last()
参数
- NA
返回
error_get_last() 函数返回一个关联数组,描述最后一个错误,键为 "type"、"message"、"file" 和 "line"。如果还没有出现错误,则返回 NULL。
示例
以下是一个例子 -
<?php
echo $res;
print_r(error_get_last());
?>
输出
以下是输出。在这里,我们在关联数组中显示错误 -
Array ( [type] => 8 [message] => Undefined variable:res [file] => /home/cg/root/4127336/main.php [line] => 2 ) PHP Notice:Undefined variable:res in /home/cg/root/4127336/main.php on line 2
相关用法
- PHP error_reporting()用法及代码示例
- PHP error_log()用法及代码示例
- PHP eregi_replace()用法及代码示例
- PHP ereg()用法及代码示例
- PHP ereg_replace()用法及代码示例
- PHP eregi()用法及代码示例
- PHP easter_days()用法及代码示例
- PHP eval()用法及代码示例
- PHP explode()用法及代码示例
- PHP each()用法及代码示例
- PHP easter_date()用法及代码示例
- PHP end()用法及代码示例
- PHP empty()用法及代码示例
- PHP expm1()用法及代码示例
- PHP exif_read_data()用法及代码示例
- PHP extract()用法及代码示例
- PHP exif_imagetype()用法及代码示例
- PHP exit( )用法及代码示例
注:本文由纯净天空筛选整理自Karthikeya Boyini大神的英文原创作品 error_get_last() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。