相关文章推荐
暴走的海龟  ·  CreateProcessAsUser ...·  1 年前    · 
憨厚的篮球  ·  Visual Studio Code ...·  1 年前    · 
$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 ); // 下个月的月末时间戳