我需要得到过去两个月的月份。我使用了下面的代码,但无法获得正确的月份。输出也低于我在date('M'); // OCT
date('M', strtotime('-1 month')); // OCT
date('M', strtotime('-2 month')); //AUG
上的10月。
let foo ={
name:'foo',
sayHello(){
console.log(this.name+'hello')
}
}
foo.sayHello() // foohello