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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。