PHP error_get_last() 函數(shù)
PHP error_get_last() 函數(shù)

定義和用法
error_get_last() 函數(shù)獲得最后發(fā)生的錯(cuò)誤。
該函數(shù)以數(shù)組的形式返回最后發(fā)生的錯(cuò)誤。如果沒有錯(cuò)誤發(fā)生則返回 NULL。
返回的錯(cuò)誤數(shù)組包含 4 個(gè)鍵名和鍵值:
- [type] - 錯(cuò)誤類型
- [message] - 錯(cuò)誤消息
- [file] - 發(fā)生錯(cuò)誤所在的文件
- [line] - 發(fā)生錯(cuò)誤所在的行
語法
error_get_last()
實(shí)例
<?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
)

相關(guān)文章
- PHP 安裝
- PHP 語法
- PHP $_POST 變量
- PHP Session
- PHP 過濾器
- PHP 高級(jí)過濾器
- PHP array_count_values() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP arsort() 函數(shù)
- PHP end() 函數(shù)
- PHP natsort() 函數(shù)
- PHP rsort() 函數(shù)
- PHP uasort() 函數(shù)
- PHP 5 Array 函數(shù)