06/04/2021, 14:46
Hàm date_get_last_errors() trong PHP - PHP Function
Code $date = date_create('Zaidap.com.net'); echo "<pre>"; print_r(date_get_last_errors()); echo "</pre>";
Hàm date_get_last_errors()
sẽ trả về một mảng các cảnh báo và lỗi trong khi phân tích chuỗi thời gian.
Cú pháp
Cú pháp: date_get_last_errors();
Hàm không có tham số.
Kết quả trả về
Hàm sẽ trả về một mảng bao gồm các thông báo và các lỗi.
Ví dụ
Cách sử dụng hàm date_get_last_errors()
:
Code
$date = date_create('Zaidap.com.net'); echo "<pre>"; print_r(date_get_last_errors()); echo "</pre>";
Kết quả
Array ( [warning_count] => 1 [warnings] => Array ( [6] => Double timezone specification ) [error_count] => 2 [errors] => Array ( [0] => The timezone could not be found in the database [9] => Double timezone specification ) )
Tham số: php.net
Nguồn: Zaidap.com.net