$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");