thinkphp 5 where 组合条件map数组or

Posted Cabinet

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp 5 where 组合条件map数组or相关的知识,希望对你有一定的参考价值。

if($inviterId>0) {
            $arr = Db::table("tablename")-> where("pid=$inviterId")->field(‘id‘)->select();
            $ids=‘‘;
            for ($i=0; $i < count($arr); $i++) { 
                $ids =$ids.‘,‘. $arr[$i][‘id‘];
            }
            if(\strlen($ids)>1) $ids=substr($ids,1);
            $map[‘inviterId‘]=array([‘=‘,$inviterId],[‘in‘, $ids ],‘or‘);
        }

直接贴代码记录以下供以后参考吧

以上是关于thinkphp 5 where 组合条件map数组or的主要内容,如果未能解决你的问题,请参考以下文章

thinkphp自带的分页 查询数据时怎么使用where条件

ThinkPHP Where 条件中使用表达式

thinkphp 中where条件怎么使用or

涨知识,涨知识 :ThinkPHP框架下Where条件查询Mysql数据库某字段是否为空

ThinkPHP 中 where条件 or,and 同时使用

thinkphp 多个字段的不同关系的查询条件实现 .