>백엔드 개발 >PHP 튜토리얼 >laravel5 - PHP框架 Laravel Eloquent ORM where 多条件查询

laravel5 - PHP框架 Laravel Eloquent ORM where 多条件查询

WBOY
WBOY원래의
2016-06-06 20:29:571995검색

<code> $goodsShow = Goods::where('product_id','=',$id)->first();
</code>

这个是 查询一个条件呢 我想在where 里面 在增加 几个条件 可以吗

有大神指点一下吗

回复内容:

<code> $goodsShow = Goods::where('product_id','=',$id)->first();
</code>

这个是 查询一个条件呢 我想在where 里面 在增加 几个条件 可以吗

有大神指点一下吗

$goodsShow = Goods::where([product_id'=>$id,'name'=>$name])->first();

多条可以使用苏生不惑的方法
其实单个条件可以写成

<code>$goodsShow = Goods::where('product_id', $id)->first();
</code>

方便一些。

多条件的话可以这样写:

<code class="php">$goodsShow = Goods::where('cate_id','=',$cate_id)
    ->where(function($query){
        $query->where('status','orWhere(function($query){
                $query->where('status', '91');
            });
    })->first();</code>

这一段其实执行的就是where cate_id = $cate_id AND (status

可以传递数组嘛,就像thinkphp一样的

..........

感觉laravel是不是 仿thinkphp的。
还有个问题就是 如果我想写多个 带自定义逻辑符号的 我觉得 @JefferyWang 这个方法还是不错的

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.