Tôi đã tìm thấy câu trả lời cho vấn đề codeigniter like và or_like tại diễn đàn ellislab https://ellislab.com/forums / viewthread / 185983 / Thay vì sử dụng
$this->db->like('location', $your_string);
sử dụng:
$this->db->where('location LIKE', '%'.$your_string.'%');
và or_where thay vì or_like .