因为要做验证
我需要验证当月的前后一个月内的年和月
例如现在2018年8月 年月必须介于 2018年7月 到 2018年9月
我是这样做的
$minMonth = date('Ym',stototime('-1 month'));
$maxMonth = date('Ym',strtotime('+1 month'));
min是没问题
但是有问题的是$maxMonth
正常情况下可以取得201809
可是刚好今天是2018 8 31
却取得201810
不知道是不是我对strtotime有点误解
想请问各位 如何正确取得下个月的月份呢?