Laravel Eloquent ORM 多条件查询的例子


Posted in PHP onOctober 10, 2019

一、需求:

在数据搜索时最常见的就是调用同一个方法查询,而查询的字段却可能是其中一个或其中的几个字段一起组合查询,例如:对列表的搜索,基本上都是几个字段随意组合搜索。那么在model里就需要判断有那个字段组合,怎么组合。

网上找了很久,Laravel群里也问了几个,都说没有写过,于是自己写个吧。话不多说,见代码:

function findByParam($param = array()) 
 { 
  $select = new Customer(); 
  if (isset($param['name']) && '' != $param['name']) 
  { 
   $select = $select->where('customer.name', '=', $param['name']); 
  } 
  if (isset($param['phone']) && '' != $param['phone']) 
  { 
   $select = $select->where('customer.phone', '=', $param['phone']); 
  } 
  if (isset($param['email']) && '' != $param['email']) 
  { 
   $select = $select->where('customer.email', '=', $param['email']); 
  } 
  if (isset($param['tel']) && '' != $param['tel']) 
  { 
   $select = $select->where('customer.tel', '=', $param['tel']); 
  } 
  if (isset($param['qq']) && '' != $param['qq']) 
  { 
   $select = $select->where('customer.qq', '=', $param['qq']); 
  } 
  if (isset($param['IDCard']) && '' != $param['IDCard']) 
  { 
   $select = $select->where('customer.IDCard', '=', $param['IDCard']); 
  } 
   
  $customers = $select->leftJoin("member", function ($join) 
  { 
   $join->on("customer.memberID", "=", "member.id"); 
  }) 
   ->get(array( 
   'customer.id', 
   'customer.name', 
   'customer.sex', 
   'customer.tel', 
   'customer.phone', 
   'customer.address', 
   'customer.email', 
   'customer.qq', 
   'customer.headPic', 
   'customer.birthday', 
   'customer.IDCard', 
   'customer.enable', 
   'customer.memberID', 
   'customer.IDCard', 
   'customer.info', 
   'member.name as mname', 
   'member.discount' 
  )); 
  return json_encode($customers);

调用的时候,controller里只需要接收这些字段,无论它是否有值,直接加入到$param数组中查询就OK,例如:

function anyFindbyparam() 
 { 
  $name = Input::get('name'); 
  $tel = Input::get('tel'); 
  $phone = Input::get('phone'); 
  $email = Input::get('email'); 
  $qq = Input::get('qq'); 
  $IDCard = Input::get('IDCard'); 
  $customer = new Customer(); 
  $customers = $customer->findByParam(array( 
   'name' => $name, 
   'tel' => $tel, 
   'phone' => $phone, 
   'email' => $email, 
   'qq' => $qq, 
   'IDCard' => $IDCard 
  )); 
  return $customers; 
 }

以上这篇Laravel Eloquent ORM 多条件查询的例子就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

PHP 相关文章推荐
PHP读写文件的方法(生成HTML)
Nov 27 PHP
PHP中基本符号及使用方法
Mar 23 PHP
ExtJS与PHP、MySQL实现存储的方法
Apr 02 PHP
基于HBase Thrift接口的一些使用问题及相关注意事项的详解
Jun 03 PHP
XAMPP安装与使用方法详细解析
Nov 27 PHP
PHP根据传来的16进制颜色代码自动改变背景颜色
Jun 13 PHP
php插入排序法实现数组排序实例
Feb 16 PHP
PHP使用array_fill定义多维数组的方法
Mar 18 PHP
php+mysql查询实现无限下级分类树输出示例
Oct 03 PHP
一次因composer错误使用引发的问题与解决
Mar 06 PHP
PHP+MySQL实现在线测试答题实例
Jan 02 PHP
YII2框架使用控制台命令的方法分析
Mar 18 PHP
laravel withCount 统计关联数量的方法
Oct 10 #PHP
浅谈laravel中的关联查询with的问题
Oct 10 #PHP
thinkphp框架使用JWTtoken的方法详解
Oct 10 #PHP
Laravel 对某一列进行筛选然后求和sum()的例子
Oct 10 #PHP
asp.net和php的区别点总结
Oct 10 #PHP
解决laravel groupBy 对查询结果进行分组出现的问题
Oct 09 #PHP
PHP之多条件混合筛选功能的实现方法
Oct 09 #PHP
You might like
把1316这个数表示成两个数的和,其中一个为13的倍数,另一个是11的倍数,求这两个数。
2011/06/24 PHP
PHP中mb_convert_encoding与iconv函数的深入解析
2013/06/21 PHP
ThinkPHP3.1新特性之字段合法性检测详解
2014/06/19 PHP
PHP Curl模拟登录微信公众平台、新浪微博实例代码
2016/01/28 PHP
PHP字典树(Trie树)定义与实现方法示例
2017/10/09 PHP
PHP工厂模式简单实现方法示例
2018/05/23 PHP
用javascript自动显示最后更新时间
2007/03/15 Javascript
自写简单JS判断是否已经弹出页面
2010/10/20 Javascript
Jquery知识点三 jquery表单对象操作
2011/01/17 Javascript
javascript九宫格图片随机打乱位置的实现方法
2017/03/15 Javascript
js时间查询插件使用详解
2017/04/07 Javascript
js实现分页功能
2017/05/24 Javascript
详解Vue 全局引入bass.scss 处理方案
2018/03/26 Javascript
详解webpack之图片引入-增强的file-loader:url-loader
2018/10/08 Javascript
12个提高JavaScript技能的概念(小结)
2019/05/09 Javascript
tsconfig.json配置详解
2019/05/17 Javascript
[01:34]DAC2018主赛事第四日五佳镜头 Gh巨牙海民助Miracle-死里逃生
2018/04/07 DOTA
python使用rsa加密算法模块模拟新浪微博登录
2014/01/22 Python
详解Django缓存处理中Vary头部的使用
2015/07/24 Python
Nginx搭建HTTPS服务器和强制使用HTTPS访问的方法
2015/08/16 Python
Python的Flask框架标配模板引擎Jinja2的使用教程
2016/07/12 Python
python文件名和文件路径操作实例
2017/09/29 Python
Python 爬虫之Beautiful Soup模块使用指南
2018/07/05 Python
Python制作微信好友背景墙教程(附完整代码)
2019/07/17 Python
python识别文字(基于tesseract)代码实例
2019/08/24 Python
python多继承(钻石继承)问题和解决方法简单示例
2019/10/21 Python
DJANGO-URL反向解析REVERSE实例讲解
2019/10/25 Python
使用python 将图片复制到系统剪贴中
2019/12/13 Python
Django之form组件自动校验数据实现
2020/01/14 Python
教师职称自我鉴定
2014/02/12 职场文书
12月红领巾广播稿
2014/02/13 职场文书
学生会竞选演讲稿学习部
2014/08/25 职场文书
环境卫生工作汇报材料
2014/10/28 职场文书
2014年团工作总结
2014/11/27 职场文书
python opencv检测直线 cv2.HoughLinesP的实现
2021/06/18 Python
解决SpringBoot文件上传临时目录找不到的问题
2021/07/01 Java/Android