PHP error_get_last() 函数
PHP error_get_last() 函数
完整的 PHP Error 参考手册定义和用法
error_get_last() 函数获得最后发生的错误。
该函数以数组的形式返回最后发生的错误。如果没有错误发生则返回 NULL。
返回的错误数组包含 4 个键名和键值:
- [type] - 错误类型
- [message] - 错误消息
- [file] - 发生错误所在的文件
- [line] - 发生错误所在的行
语法
error_get_last()
实例
<?php
echo $test;
print_r(error_get_last());
?>
echo $test;
print_r(error_get_last());
?>
上面代码的输出如下所示:
Array
(
[type] => 8
[message] => Undefined variable: test
[file] => C:webfoldertest.php
[line] => 2
)
(
[type] => 8
[message] => Undefined variable: test
[file] => C:webfoldertest.php
[line] => 2
)
完整的 PHP Error 参考手册
相关文章
- PHP 安装
- PHP 语法
- PHP $_POST 变量
- PHP Session
- PHP 过滤器
- PHP 高级过滤器
- PHP array_count_values() 函数
- PHP array_fill_keys() 函数
- PHP array_flip() 函数
- PHP array_product() 函数
- PHP array_shift() 函数
- PHP array_slice() 函数
- PHP array_splice() 函数
- PHP array_walk_recursive() 函数
- PHP arsort() 函数
- PHP end() 函数
- PHP natsort() 函数
- PHP rsort() 函数
- PHP uasort() 函数
- PHP 5 Array 函数