日期時間函式

$today = new DateTime();
$birthday  = new DateTime("1980-01-01″);
$interval   = $today->diff($birthday );
echo $interval->format("%y years, %m months, %a days, %h hours, %i minutes, %S seconds");

echo $interval->format("%y years");
echo $interval->format("Y-m-d");
echo $interval->days;

傳回自1970 /01/01  00:00:00 到現在相差秒數
time()

3 小時後的日期時間
date("Y-m-d h : i : s a", time() + 3 * 60 * 60);

取得指定日期時間的時間戳記
mktime(hour, minute, second, month, day, year)

設定時區
date_default_timezone_set("Asia/Taipei");

 

本篇發表於 PHP。將永久鏈結加入書籤。

發表迴響

您的電子郵件位址並不會被公開。 必要欄位標記為 *

*

您可以使用這些 HTML 標籤與屬性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>