difference between $query>num_rows() and $this->db->count_all_results() in CodeIgniter & which one is recommended

后端 未结 8 1681
南方客
南方客 2020-12-13 17:50

In a scenario I need to know the count of recordset a query will return, which in codeigniter can be done by $query->num_rows() or $this->db->cou

8条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-13 18:29

    Total number of results

    $this->db->count_all_results('table name');
    

提交回复
热议问题