我正在尝试搜索多个单词。我已经尝试将 FULLTEXT 添加到我的数据库架构中。
这是我现在的代码,只有一个字返回结果。
$term = $this->input->post('term');
$this->db->like('firstname', $term);
$this->db->or_like('lastname', $term);
$this->db->or_like('middlename', $term);
$query = $this->db->get('people');
$data['people'] = $query->result();
$this->load->view('people', $data);
搜索像“John”、“Doe”或“Smith”这样的词是可行的。
但是当我尝试搜索“John Doe”或“John Doe Smith”时,它不会返回任何结果。
如何使用 CodeIgniter 的 Active Record 或“$this->get->query”实现多词搜索。