当前位置:首页 > CMS教程 > Thinkphp > 列表

thinkPHP5框架闭包函数与子查询传参用法示例

发布:smiling 来源: PHP粉丝网  添加日期:2021-10-20 12:17:58 浏览: 评论:0 

这篇文章主要介绍了thinkPHP5框架闭包函数与子查询传参用法,结合实例形式分析了thinkPHP5闭包查询与参数传递相关操作技巧,需要的朋友可以参考下。

本文实例讲述了thinkPHP5框架闭包函数用法,分享给大家供大家参考,具体如下:

普通使用

举个栗子:

  1. $this->where(function ($query
  2.  $query->where('id', 1)->whereor('id', 2); 
  3. })->find(); 

上述栗子就是一个简单的where查询的闭包函数使用,使用匿名函数添加复杂条件查询,最后执行的sql是:

  1. // 加入上述代码写在user模型里,则执行的sql为: 
  2. select * from user where (id = 1 or id = 2); 

复杂用法

其实闭包函数也不会复杂到哪去,无非带参数不带参数而已。举个栗子(上面的栗子加强下)

  1. $this->where(function ($queryuse ($id1$id2
  2.  $query->where('id'$id1)->whereor('id'$id2); 
  3. })->find(); 

这也就是thinkphp 5 里怎么使用闭包查询传参数的方法,使用use 传入参数。

tp5闭包子查询传参方法

在channel表中查询status,channel_id,channel_name,account_level这些字段,且这些字段的channel_id不在adv_id为$id的表adv_channel_rule中:

  1. $model = new Model(); 
  2. $id = $req_models["id"]; 

tp5闭包子查询传参:

  1. $res = $model->table('channel'
  2.   ->field(['status','channel_id','channel_name','account_level']) 
  3.   ->where('channel_id','NOT IN',function($queryuse ($id) { 
  4.  $query->table('adv_channel_rule')->where("adv_id",$id)->field('channel_id'); 
  5.   })->select(); 

mysql的原生写法:

  1. $res = 'SELECT adv_id,adv_name,status,account_level FROM `channel` WHERE channel_id NOT IN (SELECT channel_id FROM adv_channel_rule WHERE adv_id='.$id.')'
  2. $result = $model->query($res);

Tags: thinkPHP5框架闭包

分享到: