Php 拉威尔还是在哪里

Php 拉威尔还是在哪里,php,sql,laravel,Php,Sql,Laravel,目前我正在Laravel从事一个项目,但我被卡住了。我想创建一个SQL语句,如下所示: SELECT * FROM SPITems WHERE publisher_id=? AND feed_id=? AND (title LIKE '%?%' OR description LIKE '%?%') 现在我有了这个代码: $query = SPItem::orderBy('title'); if(isset($_GET['publisherID']) && is_numeric(

目前我正在Laravel从事一个项目,但我被卡住了。我想创建一个SQL语句,如下所示:

SELECT * FROM SPITems WHERE publisher_id=? AND feed_id=? AND (title LIKE '%?%' OR description LIKE '%?%')
现在我有了这个代码:

$query = SPItem::orderBy('title');
if(isset($_GET['publisherID']) && is_numeric($_GET['publisherID']))
{
    $query = $query->where('publisher_id', $_GET['publisherID']);
}
if(isset($_GET['productFeedID']) && is_numeric($_GET['productFeedID']))
{
    $query = $query->where('program_id', $_GET['feedID']);
}
if(isset($_GET['search']))
{
    $query = $query->orWhere('title', 'like', '%' . $_GET['search'] . '%');
    $query = $query->where('description', 'like', '%' . $_GET['search'] . '%');
}
但这会产生:

SELECT * FROM SPITems WHERE (publisher_id=? AND feed_id=?) OR (title LIKE '%?%') AND description LIKE '%?%'
如何获得正确的“或”顺序?

查看文档中的逻辑分组部分:

它解释了如何在WHERE子句中对条件进行分组

应该是这样的:

if(isset($_GET['search']))
{
    $query->where(function($query){
        $query->where('title', 'like', '%' . $_GET['search'] . '%')
              ->orWhere('description', 'like', '%' . $_GET['search'] . '%');
    });
}
你可以用whereRaw

SPItem::whereRaw(" publisher_id=? AND feed_id=? AND (title LIKE '%?%' OR description LIKE '%?%')", array(?,?,?,?))

您不需要
$query=$query…
->where
这样的函数来修改现有对象。它与收藏不同