$v){ $arr[] = [ 'phone' => $v, 'org_id' => $orgId, 'from_id' => $fromId, 'type' => $type, 'content' => $msg, 'create_time' => $curTime ]; if(count($arr) == 50){ Db::name('sms_log')->insertAll($arr); $arr = []; } } if($arr){ Db::name('sms_log')->insertAll($arr); } return true; }catch (Exception $e){ trace($e->getMessage()); return false; } } }