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中如何给日期加上一个月/天的主要内容,如果未能解决你的问题,请参考以下文章