echo date('Y-m',strtotime('-1 months'));
echo "\r\n";
echo date('Y-m',strtotime('first day of last month'));
echo "\r\n";
echo date('Y-m',strtotime('-1 week'));
創(chuàng)新互聯(lián)建站主營遼陽網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,重慶APP軟件開發(fā),遼陽h5小程序開發(fā)搭建,遼陽網(wǎng)站營銷推廣歡迎遼陽等地區(qū)企業(yè)咨詢
當(dāng)遇到月為31日是 date('Y-m',strtotime('-1 months'));求的月份還是當(dāng)月的
正確使用方式
echo date('Y-m',strtotime('first day of last month'));
echo date('Y-m-d H:i:s', strtotime('-1 month', strtotime(date('Y-m'))));