php計算時間差轉化時間戳函數strtotime

$fromTime = date("Y-m-d H:i:s", strtotime("-60 MINUTE"));//當前時間上一個小時的時間;
echo(strtotime("now") . "<br>");
echo(strtotime("15 October 1980") . "<br>");
echo(strtotime("+5 hours") . "<br>");
echo(strtotime("+1 week") . "<br>");
echo(strtotime("+1 week 3 days 7 hours 5 seconds") . "<br>");
echo(strtotime("next Monday") . "<br>");
echo(strtotime("last Sunday"));

Done!php

相關文章
相關標籤/搜索