我有以下内容:
$get = array(trim($this->db->get_where('base', array('key' => 'courses'))->row('value'), '"[]'));
//$get_2 = array('1', '2', '3');
$this->db->order_by("id", "desc");
$this->db->limit('8');
$this->db->where('status', 'active');
$this->db->where_in('id', $get);
return $this->db->get('course')->result_array();
在数据库中它看起来像这样:
$get
变量在此表中进行查询。
问题是它不起作用,如果我使用$get_2
它可以正常工作,这会是什么?
奇怪,因为这些值与 $get
和 $get_2
完全相同。
天涯尽头无女友