如何计算返回的行数?

时间:2015-01-26 16:49:31

标签: php codeigniter activerecord

我正在使用My_model(由jamierumbelow开发)用于我的小应用程序。

我有一个基本的用户搜索,我正在尝试对结果进行分页,但我无法弄清楚如何获得结果返回的总行数。这是我控制器中的代码:

protected function get_users(){


$this->load->model('user_model');


$this->data["users"]  = $this->user_model;

if($this->input->post('country')){
    $this->data["users"] = $this->data["users"]->search('country', $this->input->post('country'));
}

if($this->input->post('city')){
    $this->data["users"] = $this->data["users"]->search('city', $this->input->post('city'));
}


if($this->input->post('forename')){
    $this->data["users"] = $this->data["users"]->search('forename', $this->input->post('forename'));
}


if($this->input->post('surname')){
    $this->data["users"] = $this->data["users"]->search('surname', $this->input->post('surname'));
}

$this->data["bla"]  = $this->data["users"]->get_all();

}

如何计算结果总数?感谢。

1 个答案:

答案 0 :(得分:0)

使用$this->data["users"]->count_all()进行行计数。