首页 > Web开发 > 详细

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

时间:2019-08-31 12:02:46      阅读:75      评论:0      收藏:0      [点我收藏+]

前一天的日期为:

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获取指定日期的前一天,前一月,前一年日期

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!