我的模型中有以下功能,我想用它来搜索短语等。但是,如果我传入多个单词,空格总是会转换为 %20 符号,这会破坏我的查询。我该如何避免这种情况?
默认情况下,这种类型的查询在 codeigniter 中是否安全?还是我需要先逃避 $term ?
function get_search_entries($limit, $start, $term)
{
$this->db->select('statuses.id, title, status, posted_by, created, rating, name');
$this->db->from('statuses');
$this->db->join('categories', 'categories.id = statuses.category_id');
$this->db->where('MATCH (title, status) AGAINST ("'.$term.'")', NULL, FALSE);
$this->db->limit($limit, $start);
$query = $this->db->get();
if ($query->num_rows() > 0) {
return $query->result();
}
return false;
}