// 上个月的时间戳
    $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);//下个月的月末时间戳

亲测有效

 

SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。
扫码关注我们
微信号:SRE实战
拒绝背锅 运筹帷幄