當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP date_get_last_errors()用法及代碼示例


date_get_last_errors()函數是PHP中的內置函數,用於返回警告和錯誤。此函數解析日期/時間字符串,並返回警告和錯誤的數組。

用法:

  • 程序風格:
    array date_get_last_errors( void )
  • 麵向對象的樣式:
    array DateTime::getLastErrors( void )

參數:該函數不接受任何參數。


返回值:該函數返回一個數組,其中包含有關警告和錯誤的信息。

以下示例程序旨在說明PHP中的date_get_last_errors()函數:

程序1:

<?php 
$date = date_create(); 
print_r(date_get_last_errors()); 
?>
輸出:
Array
(
    [warning_count] => 0
    [warnings] => Array
        (
        )

    [error_count] => 0
    [errors] => Array
        (
        )

)

程序2:

<?php 
try { 
    $date = new DateTime('vgdgh'); 
}  
catch (Exception $e) { 
      
    // For demonstration purposes only... 
    print_r(DateTime::getLastErrors()); 
} 
?>
輸出:
Array
(
    [warning_count] => 0
    [warnings] => Array
        (
        )

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

)

相關文章:

參考: http://php.net/manual/en/datetime.getlasterrors.php



相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | date_get_last_errors() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。