php如何讓時間增加一個月
使用php的strtotime()函數
實例:例如現在時間5261是“2010-10-06”,加4102一個月。 1653
echo date("Y-m-d", strtotime("+1 months", strtotime("2010-10-06")));
php的strtotime的特定應用實例:
<?php echo(strtotime("now")); echo(strtotime("3 October 2005")); echo(strtotime("+5 hours")); echo(strtotime("+1 week")); echo(strtotime("+1 week 3 days 7 hours 5 seconds")); echo(strtotime("next Monday")); echo(strtotime("last Sunday")); ?>
推薦教學:《PHP教學》
###################以上是php如何使時間增加一個月的詳細內容。更多資訊請關注PHP中文網其他相關文章!