獲取警告和錯誤資訊

DateTime::getLastErrors

date_get_last_errors

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

DateTime::getLastErrors -- date_get_last_errors獲取警告和錯誤資訊

說明

物件導向風格

public static DateTime::getLastErrors(): array

過程化風格

返回在解析日期時間字串的過程中發生的警告和錯誤資訊。

參數

此函式沒有參數。

返回值

返回一個陣列,其中包含在解析日期時間字串的過程中發生的警告和錯誤資訊。

範例

示例 #1 DateTime::getLastErrors() 例程

物件導向風格

<?php
try {
    
$date = new DateTime('asdfasdf');
} catch (
Exception $e) {
    
// 僅出於演示的目的...
    
print_r(DateTime::getLastErrors());

    
// 實際的程式碼中你應該這樣使用返回對像
    // echo $e->getMessage();
}
?>

過程化風格

<?php
$date 
date_create('asdfasdf');
print_r(date_get_last_errors());
?>

以上例程會輸出:

Array
(
   [warning_count] => 1
   [warnings] => Array
       (
           [6] => Double timezone specification
       )

   [error_count] => 1
   [errors] => Array
       (
           [0] => The timezone could not be found in the database
       )

)

返回陣列中的索引 6 和 0 表示在解析過程中,所提供的日期時間字串中無法正確解析的字元位置。

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *