php實作時間增加1天的方法:先建立一個PHP範例檔;然後透過「date('Y-m-d H:i:s',strtotime(" 1 day 1 hour 1 minute");」方式實作時間增加1天。
推薦:《PHP影片教學》
<?php echo "今天:",date('Y-m-d H:i:s'),"<br>"; echo "明天:",date('Y-m-d H:i:s',strtotime('+1 day')); ?>
echo "明天:",date('Y-m-d H:i:s',strtotime('+1 day')); echo "明天:",date('Y-m-d H:i:s',strtotime('+1 hour')); echo "明天:",date('Y-m-d H:i:s',strtotime('+1 minute')); echo "明天:",date('Y-m-d H:i:s',strtotime('+1 mouth'));
date('Y-m-d H:i:s',strtotime("+1 day +1 hour +1 minute");
echo date("Y-m-d",strtotime("+1 month",strtotime("2012-02-04")));
echo date("Y-m-d",strtotime("+1 week",strtotime("2011-02-04")));
echo date("Y-m-d",strtotime("+1 day",strtotime("2011-02-04")));
以上是php 時間如何增加1天的詳細內容。更多資訊請關注PHP中文網其他相關文章!