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

內建函數 (function) date_interval_format() 用來將時間間隔物件 (object) 輸出成格式化字串

函數說明
string date_interval_format(DateInterval $object, string $format)$object 為時間間隔物件, $format 為格式化字串。


date_interval_format() 與 DateInterval::format() 有相同的功能,舉例如下
<?php
$i = date_interval_create_from_date_string('22 day');
echo date_interval_format($i, '%d days') . "\n";
$i = DateInterval::createFromDateString('10 day');
echo $i->format('%d days') . "\n";

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


執行結果如下



中英文術語對照
函數function
物件object


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


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


參考資料
http://www.php.net/manual/en/function.date-interval-format.php
http://www.php.net/manual/en/dateinterval.format.php

沒有留言: