我已经编写了一些代码来在CODEIGNITER3框架中进行搜索。当我在搜索输入中插入2个或更多单词时,它的效果很好,但是,当我只输入1个单词时,会出现此错误。
我该如何解决这个问题? 这是我的控制器:
function search() {
$keyword = strip_tags($this->input->get('searchforcourses'));
$keyword = explode(" ", $keyword);
$data['title'] = 'Bütün Kurslar Burada';
$data['courses'] = $this->courses_model->courses_search($keyword);
$this->load->view('templates/header');
$this->load->view('courses/courses', $data);
$this->load->view('templates/footer');
}
这是我的模特:
function courses_search($keyword) {
$this->db->select('*');
$this->db->from('courses');
$this->db->like('title',$keyword[0]);
$this->db->or_like('title',$keyword[1]);
$this->db->join('instructors', 'instructors.id = courses.instructor_id', 'left');
$this->db->join('categories', 'categories.id = courses.category_id', 'left');
$query = $this->db->get();
return $query->result_array();
}
提前致谢!
答案 0 :(得分:1)
错误意味着您正在尝试访问未使用的密钥1
,您的代码在模型级别上是错误的,您的代码只获得两个关键字,如果用户搜索了三个关键字,该怎么办?你只是会忽略它们吗?
我建议这样做:
function courses_search($keyword) {
$this->db->select('*');
$this->db->from('courses');
// You should consider limiting the number of keywords to avoid long loops
// Limits to 20 keywords
$keyword = array_slice($keyword, 0, 19);
// You can also limit it in the 3rd parameter of the explode function
// Loop through the keywords
forearch($keyword as $key){
$this->db->or_like('title',$key);
}
$this->db->join('instructors', 'instructors.id = courses.instructor_id', 'left');
$this->db->join('categories', 'categories.id = courses.category_id', 'left');
$query = $this->db->get();
return $query->result_array();
}