私はcodeigniterにこのようなコードを持っています
foreach ($where as $k=>$v){
foreach ($v as $val){
$this->db->or_where($k, $val);
}
}
しかし、私は'またはグループ'のような場所が欲しい
select * from table where id = '1' and (category = 'tekno' OR category ='biologi');
何か案は?