所以,这是我的网址:http://example.com/ci/index.php/home/sort_by_week 如您所见,我的第3段是 sort_by_week ,但我需要在此页面上进行分页,有没有办法获得第4段?我已经尝试在分页脚本中执行 $ this-> uri-> segment(4) ,但它不起作用。有人可以帮助我,并就如何使这项工作给出一个扩展的解释吗?
答案 0 :(得分:1)
是的,您可以轻松处理
$this->load->library('pagination');
$config['base_url'] = 'http://example.com/ci/index.php/home/sort_by_week';
$config['total_rows'] = 100;
$config['per_page'] = 10;
$config['uri_segment'] = 4;
$this->pagination->initialize($config);
echo $this->pagination->create_links();
你必须把这个 $ config [' uri_segment'] = 4; 这样,所以codeigniter可以在第4段设置你的分页。