codeigniter count_all_results

后端 未结 7 1937
眼角桃花
眼角桃花 2021-02-14 03:37

I\'m working with the latest codeIgniter released, and i\'m also working with jquery datatables from datatables.net

I

7条回答
  •  半阙折子戏
    2021-02-14 04:04

    Count first with no_reset_flag.

    $this->db->count_all_results('', FALSE);
    $rows = $this->db->get()->result_array();
    

    system/database/DB_query_builder.php

    public function count_all_results($table = '', $reset = TRUE) { ... }
    

提交回复
热议问题