PHP 快速導覽 - 核心延伸函數 日期、時間相關 date_get_last_errors()

內建函數 (function) date_get_last_errors() 回傳之前與時間物件有關的錯誤訊息

函數說明
array date_get_last_errors(void)不需要參數。


date_get_last_errors() 與 DateTime::getLastErrors() 有相同的功能,舉例如下
<?php
$date = date_create('abcd');
print_r(date_get_last_errors());

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:datetime13.php
    功能:示範 PHP 程式 
    作者:張凱慶
    時間:西元 2013 年 2 月 */
?>


執行結果如下



若用 DateTime::getLastErrors() 來寫,需要加上 try-catch 例外處理
try {
    $date = new DateTime('abcd');
} catch (Exception $e) {
    print_r(DateTime::getLastErrors());
}


中英文術語對照
函數function
參數parameter


您可以繼續參考
日期、時間相關的類別與函數


相關目錄
回 PHP 快速導覽
回 PHP 教材
回首頁


參考資料
http://www.php.net/manual/en/function.date-get-last-errors.php
http://www.php.net/manual/en/datetime.getlasterrors.php

沒有留言: