1. 程式人生 > >php 按時間分組

php 按時間分組

/*
*   按當前的月份  查出 之前的月份  每個月份的月初時間戳和月末時間戳
*/

//    $y = date('Y',time());
//    $m =  date('m',time());
//    for ($i=1;$i<=$m;$i++){
//
//        $startDay = $y . '-' . $i . '-1';
//        $endDay = $y . '-' . $i . '-' . date('t', strtotime($startDay));
//        $b_time  = strtotime($startDay);//當前月的月初時間戳
//        $e_time  = strtotime($endDay)+86399;//當前月的月末時間戳
//        echo  $b_time."\t".$e_time;
//        echo "<br/>";
//    }

/*
*   mysql  用from_unixtime   時間戳分組  查詢     date_formt   列如2018-12-7   分組
*/

//SELECT COUNT(user_id) as SUM,from_unixtime(user_time,'%Y-%m')month FROM `wx_user` GROUP BY month

Db::name('user')->field("COUNT(user_id) as SUM,from_unixtime(user_time,'%Y-%m')month")->group('month')->select();