首页 > 代码库 > PHP中如何给日期加上一个月/天
PHP中如何给日期加上一个月/天
使用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中如何给日期加上一个月/天
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。