PHP 中使用 strtotime "+1 month" 时发现的坑
Posted 浮尘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 中使用 strtotime "+1 month" 时发现的坑相关的知识,希望对你有一定的参考价值。
strtotime - 将任何字符串的日期时间描述解析为 Unix 时间戳
然后看下这个陨石坑:
- echo date( "Y-m-d", strtotime( "2009-01-31 +1 month" ) ); // php: 2009-03-03
- echo date( "Y-m-d", strtotime( "2009-01-31 +2 month" ) ); // PHP: 2009-03-31
很明显, 2 月根本没有 30 号, 31 号, 所以上面的 +1 month 直接跳到了三月!
那么, 怎么避免这个问题呢?
- echo date( "Y-m-d", strtotime( "first day of next month" ) ); // PHP: 2017-04-01
- echo date( "Y-m-d", strtotime( "last day of next month" ) ); // PHP: 2009-04-30
如果你无法肯定日期是否会出现异常, 最好先处理好月份再去处理是哪一天!
来源: https://blog.csdn.net/lddtime/article/details/66480676
以上是关于PHP 中使用 strtotime "+1 month" 时发现的坑的主要内容,如果未能解决你的问题,请参考以下文章