Laravel框架实现model层的增删改查(CURD)操作示例
2019/6/30 16:20:14
本文主要是介绍Laravel框架实现model层的增删改查(CURD)操作示例,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
本文实例讲述了Laravel框架实现model层的增删改查(CURD)操作。分享给大家供大家参考,具体如下:
protected $table = 'user_city'; public $timestamps = false; //添加 返回id public 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 []; } }
更多关于Laravel相关内容感兴趣的读者可查看本站专题:《Laravel框架入门与进阶教程》、《php优秀开发框架总结》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于Laravel框架的PHP程序设计有所帮助。
这篇关于Laravel框架实现model层的增删改查(CURD)操作示例的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23怎么实现安卓+php 热更新方案?-icode9专业技术文章分享
- 2024-11-22PHP 中怎么实现判断多个值是否为空、null 或者为 false?-icode9专业技术文章分享
- 2024-11-11开源 PHP 商城项目 CRMEB 二次开发和部署教程
- 2024-11-09怎么使用php在kaufland平台刊登商品?-icode9专业技术文章分享
- 2024-11-05PHP的抽象类和接口是什么,有什么区别-icode9专业技术文章分享
- 2024-11-01开源 PHP 商城项目 CRMEB 安装和使用教程
- 2024-11-01用php和mysql写无限分类,有哪几种方法-icode9专业技术文章分享
- 2024-10-31php数据分表导出时部分数据无法导出什么原因-icode9专业技术文章分享
- 2024-10-30有经验的 PHP 开发者学习一门新的编程语言,有哪些推荐的有前景的语言-icode9专业技术文章分享
- 2024-10-21php 检测图片是否篡改过-icode9专业技术文章分享