码迷,mamicode.com
首页 > Web开发 > 详细

PHP中如何给日期加上一个月/天

时间:2017-07-20 13:39:30      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:strtotime   print   ext   div   日期   sunday   mon   使用   time   

使用php的strtotime
实例:比如现在时间是“2017-07-06”,加一个月。

echo   date("Y-m-d", strtotime("+1 months", strtotime("2017-07-06")));
<?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"));
?>
print_r(date(‘Y-m-d H:i:s‘,strtotime("+1 month")));

 

PHP中如何给日期加上一个月/天

标签:strtotime   print   ext   div   日期   sunday   mon   使用   time   

原文地址:http://www.cnblogs.com/phpper/p/7210632.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!