我有一个包含如下键和值的数组:
Array ( [1] => 0 [3] => 0 )
我想调用一个 question_id = 1 且值为 0 的数据库,并将其与 question_id = 3 且值为 0 的查询相结合。我正在使用 Codeigniter。
我试过了:
foreach($array as $key=>$value){
$this->db->where('question_id', $key);
$this->db->where('value', $value);
$this->db->from('movies_values');
$query = $this->db->get();
$res = $query->result();
print_r($res);
array_push($main_array,$res);
}