whereStatus(1)->orderBy('id', 'asc')->get(); foreach($nodeList as $node){ $this->statisticsByNode($node->id); } $jobEndTime = microtime(TRUE); $jobUsedTime = round(($jobEndTime-$jobStartTime), 4); Log::info('---【'.$this->description.'】完成---,耗时'.$jobUsedTime.'秒'); } private function statisticsByNode($node_id) { $start_time = strtotime(date('Y-m-d H:i:s', strtotime("-1 hour"))); $end_time = time(); $query = UserTrafficLog::query()->whereNodeId($node_id)->whereBetween('log_time', [$start_time, $end_time]); $u = $query->sum('u'); $d = $query->sum('d'); $total = $u+$d; $traffic = flowAutoShow($total); if($total){ // 有数据才记录 $obj = new SsNodeTrafficHourly(); $obj->node_id = $node_id; $obj->u = $u; $obj->d = $d; $obj->total = $total; $obj->traffic = $traffic; $obj->save(); } } }