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

php获取指定日期的前一天,前一月,前一年日期

时间:2019-08-31 12:28:22      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:months   rto   div   php   span   mon   style   color   col   

前一天的日期为:

date("Y-m-d",strtotime("-1 days",strtotime(‘2019-08-31‘)))

 

前一月的日期为

date("Y-m-d",strtotime("-1 months",strtotime(‘2019-08-31‘)))

 

前一年的日期为:

date("Y-m-d",strtotime("-1 years",strtotime(‘2019-08-31‘)))

 

后一天的日期为:

date("Y-m-d",strtotime("+1 days",strtotime(‘2019-08-31‘)))

 

后一月的日期为:

date("Y-m-d",strtotime("+1 months",strtotime(‘2019-08-31‘)))

 

后一年的日期为:

date("Y-m-d",strtotime("+1 years",strtotime(‘2019-08-31‘)))

 

如果不是1,就把+1或者-1换成+n或者-n就可以了。

 

php获取指定日期的前一天,前一月,前一年日期

标签:months   rto   div   php   span   mon   style   color   col   

原文地址:https://www.cnblogs.com/binblogs/p/11438338.html

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