PHP中如何给日期加上一个月
2个回答
展开全部
使用php的strtotime
实例:比如现在时间是“2010-10-06”,加一个月。
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"));
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询