function select_in($arr)
{
$this->db->select('*');
$this->db->from('table');
$this->db->where($arr); // change here
$query = $this->db->get();
return $query;
}
Si desea múltiples entradas, debe escribirlas dos veces... No es posible en una sola instrucción.
$this->db->where_in('field1',$cond1);
$this->db->where_in('field2' , $cond2);
Nota:Where_in es similar a where id IN (1,2,3...) pero en su caso está haciendo múltiples condiciones where.