标签: php strtotime
不明白这一点。
今天是2017年3月30日
echo date('n', strtotime("-1 months")); // = 3 ...shouldn't it return 2? echo date('n', strtotime("-2 months")); // = 1 ...correct echo date('n', strtotime("-3 months")); // = 12 ...correct
为什么我在第一行获得3月的当前月份?