本文實例講述了Laravel框架實現model層的增刪改查(CURD)操作。分享給大家供大家參考,具體如下:
protected $table = user_city html' target='_blank'>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 boolpublic 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 arraypublic 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實例
以上就是Laravel框架實現model層的增刪改查操作示例的詳細內容,PHP教程
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。
新聞熱點
疑難解答