欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-06-24 08:17:48
前一天的日期为: 前一月的日期为 前一年的日期为: 后一天的日期为: 后一月的日期为: 后一年的日期为: 如果不是1,就把+1或者-1换成+n或者-n就可以了。 ......

前一天的日期为:

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就可以了。