PHP error_get_last() 函数

Example

返回最后发生的错误:

  1. <?php
  2. echo $test;
  3. print_r(error_get_last());
  4. ?>

以上代码的输出类似这样:

  1. Array
  2. (
  3. [type] => 8
  4. [message] => Undefined variable: test
  5. [file] => C:\webfolder\test.php
  6. [line] => 2
  7. )

定义和用法

error_get_last() 函数返回最后发生的错误(以关联数组的形式)。

关联数组包含四个键:

  • [type] - 描述错误类型
  • [message] - 描述错误消息
  • [file] - 描述发生错误的文件
  • [line] - 描述发生错误的行号

语法

  1. error_get_last();

技术细节

返回值: 返回了一个关联数组,描述了最后错误的信息,以该错误的 "type"、 "message"、"file" 和 "line" 为数组的键。 如果该错误由 PHP 内置函数导致的,"message"会以该函数名开头。 如果还没有错误则返回 NULL。
PHP 版本: 5.2+