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

Posted 周伯通的麦田

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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中如何给日期加上一个月/天的主要内容,如果未能解决你的问题,请参考以下文章

javascript JS计算指定日期加上多少天,加多少月,加多少年的日期

Js计算指定日期加上多少天,加多少月,加多少年的日期

Jquery计算指定日期加上多少天加多少月加多少年的日期

php 计算两个日期相隔多少年,多少月,多少天

用代码实现使当前日期 Date型的数据增加一个月

php 获取日期X天,周,月