我已阅读有关 Stackoverflow 的所有问题,但没有看到该问题的明确答案。我目前正在使用 codeigniter 分页库来生成使用限制和偏移量的分页链接:
$config['base_url'] = base_url() . 'explore/featured/index/';
$config['total_rows'] = $this->Projects_model->get_featured_count();//Count featured projects
$config['per_page'] = 12;
$config['uri_segment'] = 4;
$config['display_pages'] = FALSE;
$config['next_link'] = 'Older →';
$config['prev_link'] = '← Newer';
$this->pagination->initialize($config);
$limit = $config['per_page'];
$offset = $this->uri->segment(4);
$data['pagination'] = $this->pagination->create_links();
$data['projects'] = $this->Projects_model->get_featured($limit, $offset); //get featured projects from database
上面的代码限制了我的查询的输出值,并使用了我的第 4 个 URI 段中包含的偏移量。
如何将以下代码更改为页码???似乎是不可能的,因为我将不再能够在我的网址中使用偏移量。