用法
array error_get_last ( void );
定義和用法
該函數獲取有關上次發生的錯誤的信息。
參數
Sr.No | 參數及說明 |
---|---|
1 |
void 不適用。 |
返回值
它返回一個關聯數組,描述最後一個錯誤,鍵為 "type"、"message"、"file" 和 "line"。如果還沒有出現錯誤,則返回 NULL。
示例
下麵是這個函數的用法~
<?php
echo $b;
print_r(error_get_last());
?>
這將產生以下結果 -
Array ( [type] => 8 [message] => Undefined variable:a [file] => /var/www/tutorialspoint/php/test.php [line] => 2 )
相關用法
- PHP error_get_last()用法及代碼示例
- 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( )用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Function error_get_last()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。