因為要做驗證
我需要驗證當月的前後一個月內的年和月
例如現在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有點誤解
想請問各位 如何正確取得下個月的月份呢?