codeigniter 使用
Posted andydaopeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeigniter 使用相关的知识,希望对你有一定的参考价值。
CodeIgniter系列 记录count和分页
对于某个表的不带条件的count,可以简单的用
$total = $this->db->count_all($table_name)
来获取,但是如果有条件,则要用count_all_results
$this->db->where(‘sex‘, ‘M‘);
$this->db->from(‘user‘);
$total = $this->db->count_all_results();
CI的pagination库可以帮助添加分页链接,用法可以看user_guide/libraries/pagination.html
有几点需要说明。
base_url里边如果有超过2个uri_segments,则需要设置$config[‘uri_segment‘] = base_url_segments + 1
也就是uri_segment默认是3。如果不设置的话,第一页和前一页,后一页的链接都不正确。
以上是关于codeigniter 使用的主要内容,如果未能解决你的问题,请参考以下文章