Codeigniter LIKE 带通配符 (%)

问题描述 投票:0回答:7

我在 codeigniter 中有简单的数据库查询,但是我无法使用通配符进行搜索。这是我的代码:

$this->db->like('film.title',"%$query%");
$this->db->escape_like_str($query);
$res = $this->db->get('film');

如果我删除通配符(%),那么搜索就可以正常工作。另外 $query 只是带有用户输入的字符串。如有任何帮助,我们将不胜感激。

php sql mysql codeigniter activerecord
7个回答
61
投票

$this->db->like()
自动添加 %s 并转义字符串。所以你所需要的只是

$this->db->like('title', $query);
$res = $this->db->get('film');

请参阅 CI 文档以供参考:CI 2CI 3CI 4


24
投票
  $this->db->like('title', 'match', 'before'); 
 // Produces: WHERE title LIKE '%match' 

 $this->db->like('title', 'match', 'after'); 
// Produces: WHERE title LIKE 'match%' 

$this->db->like('title', 'match', 'both'); 
// Produces: WHERE title LIKE '%match%'

12
投票

对于像您可以使用的完整功能:

$this->db->like('title',$query);

对于%$查询,您可以使用

$this->db->like('title', $query, 'before');

对于 $query% 你可以使用

$this->db->like('title', $query, 'after');

7
投票

$this->db->like()

此方法使您能够生成 LIKE 子句,这对于执行搜索很有用。

$this->db->like('title', 'match');

产生:WHERE

title
LIKE '%match%'

如果要控制通配符 (%) 的放置位置,可以使用可选的第三个参数。您的选项有“之前”、“之后”、“无”和“两者”(这是默认值)。

$this->db->like('title', 'match', 'before');

产生:WHERE

title
LIKE '%match'

$this->db->like('title', 'match', 'after');

产生:WHERE

title
LIKE 'match%'

$this->db->like('title', 'match', 'none');

产生:哪里

title
喜欢“比赛”

$this->db->like('title', 'match', 'both');

产生:WHERE

title
LIKE '%match%'


2
投票

如果您不想使用通配符 (%),您可以将选项“none”传递给可选的第三个参数。

$this->db->like('title', 'match', 'none'); 
// Produces: WHERE title LIKE 'match'

0
投票

我正在使用

$this->db->query("SELECT * FROM film WHERE film.title LIKE '%$query%'"); for such purposes

-2
投票

一次搜索多个字段可以像这样完成...

function search($search)
{
    $sql = "SELECT * FROM some_table
    WHERE UPPER(a_name) LIKE ?
    OR
    UPPER(a_full_name) LIKE ?
    OR
    UPPER(a_city) LIKE ?
    OR
    UPPER(a_code) LIKE ?
    ";
    $arr = array_map(array($this,"wrapLIKE"),array($search, $search, $search, $search));
    $r = $this->db->query($sql, $arr);
    return $r;
}

function wrapLIKE($string)
{
    return strtoupper("%$string%");
}
© www.soinside.com 2019 - 2024. All rights reserved.