Pass array to where in Codeigniter Active Record
$this->db->where_in('id', ['20','15','22','42','86']);
Reference: where_in
Use where_in()
$ids = array('20', '15', '22', '46', '86');
$this->db->where_in('id', $ids );
$this->db->where_in('id', ['20','15','22','42','86']);
Reference: where_in
Use where_in()
$ids = array('20', '15', '22', '46', '86');
$this->db->where_in('id', $ids );