有没有办法在 codeigniter 的第 4 段进行分页?

Is there a way to make pagination on 4th segment in codeigniter?

所以,这是我的 url:http://example.com/ci/index.php/home/sort_by_week 如您所见,我的第 3 段是 sort_by_week,但我需要在此页面上进行分页,有没有办法获得第 4 段?我已经尝试在分页脚本中执行 $this->uri->segment(4),但没有用。有人可以帮助我并详细解释如何进行这项工作吗?

是的兄弟你可以很轻松地处理它

$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 段设置你的分页。

更多信息:Codeigniter Pagination Library