php如何使時間增加一個月

2020-07-16 10:06:33

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如何使時間增加一個月的詳細內容,更多請關注TW511.COM其它相關文章!