PHP error_get_last() 函數
PHP error_get_last() 函數

定義和用法
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 安裝
- 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 函數