首页 > 编程 > PHP > 正文

Laravel框架实现model层的增删改查操作示例

2020-03-22 19:14:58
字体:
来源:转载
供稿:网友
这篇文章主要介绍了Laravel框架实现model层的增删改查(CURD)操作,结合实例形式分析了Laravel框架模型model层进行数据库的增删改查操作具体实现技巧,需要的朋友可以参考下

本文实例讲述了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教程

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表