私はCodeIgniterを初めて使用し、Webサイトからユーザーガイドを読みます。ページ付けクラスを使用すると、ページ付けは次のように行うことができます。
<?php
class Test extends CI_Controller {
function page(){
$this->load->library('pagination');
$config['base_url'] = 'http://localhost/CodeIgniter/index.php/test/page/';
$config['total_rows'] = 20;
$config['per_page'] = 1;
$this->pagination->initialize($config);
echo $this->pagination->create_links();
}
}
?>
しかし、どうすればアルファベット順にこのページネーションを作成できますか?ありがとう...