// 上個月的時間戳 $thismonth = date('m'); $thisyear = date('Y'); if ($thismonth == 1) { $lastmonth = 12; $lastyear = $thisyear - 1; } else { $lastmonth = $thismonth - 1; $lastyear = $thisyear; } $lastStartDay = $lastyear . '-' . $lastmonth . '-1'; $lastEndDay = $lastyear . '-' . $lastmonth . '-' . date('t', strtotime($lastStartDay)); $b_time = strtotime($lastStartDay);//上個月的月初時間戳 $e_time = strtotime($lastEndDay);//上個月的月末時間戳 // 下個月的時間戳 $thismonth = date('m'); $thisyear = date('Y'); if ($thismonth == 12) { $lastmonth = 1; $lastyear = $thisyear + 1; } else { $lastmonth = $thismonth + 1; $lastyear = $thisyear; } $lastStartDay = $lastyear . '-' . $lastmonth . '-1'; $lastEndDay = $lastyear . '-' . $lastmonth . '-' . date('t', strtotime($lastStartDay)); $b_time = strtotime($lastStartDay);//下個月的月初時間戳 $e_time = strtotime($lastEndDay);//下個月的月末時間戳
親測有效