php获取指定日期的前一天,前一月,前一年日期
Posted binblogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php获取指定日期的前一天,前一月,前一年日期相关的知识,希望对你有一定的参考价值。
前一天的日期为:
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获取指定日期的前一天,前一月,前一年日期的主要内容,如果未能解决你的问题,请参考以下文章