codeigniter active record get query and query without the LIMIT clause
2022-08-31 00:22:34
im使用活动记录,它的所有工作正常,但我想将$data[“totalres”]设置为总结果,我的意思是,相同的查询但没有限制
问题是,当你做一个查询修饰符时,前面的语句被取消设置,所以我甚至不能在得到结果后添加$this->db->limit()。
任何想法?我认为“复制”查询只是为了做到这一点是一种不好的做法
function get_search($start, $numrows, $filter = array())
{
...
$this->db
->select("emp")
->from('emp')
->join('empr', 'empr.b = empr.id', 'left')
->like('code', $code)
->limit($numrows, $start);
...
$q = $this->db->get();
// number of rows WITHOUT the LIMIT X,Y filter
$data["totalres"] = ???????;
if ($q->num_rows() > 0)
{
$data["results"] = $q->result();
} else {
$data["results"] = array();
}
return $data;
}