Laravel架構實現model層的增刪改查操作樣本

來源:互聯網
上載者:User
這篇文章主要介紹了Laravel架構實現model層的增刪改查(CURD)操作,結合執行個體形式分析了Laravel架構模型model層進行資料庫的增刪改查操作具體實現技巧,需要的朋友可以參考下

本文執行個體講述了Laravel架構實現model層的增刪改查(CURD)操作。分享給大家供大家參考,具體如下:

protected $table = 'user_city';public $timestamps = false;//添加 返回idpublic function cityadd($data){    return $this->insertGetId($data);}//單條尋找public function getfind($id){    if($this->where('id',$id)->first()){      return $this->where('id',$id)->first()->toArray();    }else{      return [];    }}//查詢使用者有幾個uid,返回數量public function countCity($uid){    if($this->where('uid',$uid)->first()){      return $this->where('uid',$uid)->count();    }else{      return [];    }}//查詢全部資料public function getAll(){    return $this->get()->toArray();}/*** 修改管理員資訊* @param $id* @param $data* @return bool*/public function upAdmin($id,$data){    if($this->find($id)){      return $this->where('id',$id)->update($data);    }else{      return false;    }}//加條件,時間//查詢使用者的認購的城數public function buy_num($uid){    $startDate = date('Y-m-01', strtotime(date("Y-m-d")));    $endDate = date('Y-m-d', strtotime("$startDate +1 month -1 day"));    // 將日期轉換為Unix時間戳記    $endDate=$endDate." 22:59:59";    $startDateStr = strtotime($startDate);    $endtDateStr = strtotime($endDate);    return $this->where('uid',$uid)->where('buy_type',1)->whereBetween('create_time', array($startDateStr,$endtDateStr))->sum('buy_num');}/*** 根據id尋找城池資訊 只返回某個欄位的值* @param $id* @return array*/public function getCityName($id){    if($this->where('city_id',$id)->first()){      return $this->where('city_id',$id)->lists('city_name')[0];    }else{      return [];    }}

您可能感興趣的文章:

ThinkPHP架構實現匯出excel資料的方法樣本

原生JS實現Ajax通過POST方式與PHP進行互動的方法樣本php技巧

Laravel 整合 Geetest驗證碼的方法php執行個體

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.