PHP 获取一个月后的日期
在 PHP 里,如果想获取下个月的今天,我们通常会用 strtotime('2019-01-13 +1 month')
或者是 strtotime('next month', strtotime('2019-01-13'))
,结果是 1549987200
,用 date
转换成字符串就是 2019-02-13
,so easy!
随着时间流逝,到了 2019-01-31
这一天,这代码似乎出问题了,居然得到的是 2019-03-03
???
在 PHP 里,如果想获取下个月的今天,我们通常会用 strtotime('2019-01-13 +1 month')
或者是 strtotime('next month', strtotime('2019-01-13'))
,结果是 1549987200
,用 date
转换成字符串就是 2019-02-13
,so easy!
随着时间流逝,到了 2019-01-31
这一天,这代码似乎出问题了,居然得到的是 2019-03-03
???