php時間戳增加時間的方法:首先建立一個PHP範例檔案;然後透過「strtotime(" 1 year");」方法將當前時間戳增加一年的時間;最後輸出增加後的結果即可。
推薦:《PHP影片教學》
php目前時間戳增加時間
php將目前時間戳增加一年(year)
echo strtotime(" 1 year");//返回時間戳記, 如果要轉換成一般時間格式還需要下面的函數
echo date('Y-m-d H:i:s', strtotime("+1 year"));
同理,不只可以year 還可以是天, 月日都可以的,如下程式碼:
<?php echo strtotime("now"), "\n"; echo strtotime("10 September 2000"), "\n"; echo strtotime("+1 day"), "\n"; echo strtotime("+1 week"), "\n"; echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n"; echo strtotime("next Thursday"), "\n"; echo strtotime("last Monday"), "\n"; ?>
以上是php時間戳增加時間的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!