|
在控制器中写如下代码:
$this->db->start_cache();
$this->db->where('url !=', '');
$this->db->stop_cache();
之后调用自己写的一个辅助函数,以下是辅助函数中的代码:
$CI = &get_instance();
$query = $CI->db->get_where('table', array('id' => $id));
这个时候发现在辅助函数中,会把在控制器里写的条件 $this->db->where('url !=', ''); 添加到当前的查询中,请问有什么办法避免这种情况发生吗? |
|