function select_in($arr)
{
$this->db->select('*');
$this->db->from('table');
$this->db->where($arr); // change here
$query = $this->db->get();
return $query;
}
यदि आप एक से अधिक जहाँ चाहते हैं तो आपको इसे दो बार लिखने की आवश्यकता है....यह एक कथन में संभव नहीं है।
$this->db->where_in('field1',$cond1);
$this->db->where_in('field2' , $cond2);
नोट:जहां_इन आईडी IN (1,2,3...) के समान है, लेकिन आपके मामले में आप जहां स्थिति में एकाधिक कर रहे हैं।