クラスにajax ページングを追加したいのですが、このために CI_Pagination クラスを拡張CI_pagination
するクラスを作成したいのですが、コントローラーでこのライブラリを使用するとエラーが発生します: 新しい MY_Pagination クラスでテスト関数を呼び出すMY_Pagination
$this->load->library('pagination');
Fatal error: Call to undefined method CI_Pagination::test() ...
$config['subclass_prefix'] = 'MY_';
また、config.phpに行を追加しましPlease note that all native CodeIgniter libraries are prefixed with CI_ so DO NOT use that as your prefix.
たhttp://ellislab.com/codeigniter/user-guide/general/creating_libraries.html
これが私のコードです
<?php
class MY_Pagination extends CI_Pagination {
function __construct() {
parent::__construct();
}
function test()
{
echo 'test';
}
}
?>
このコードはファイル MY_Pagination.php に保存されます。
https://www.codeigniter.com/user_guide/general/creating_libraries.htmlからドキュメントを読みましたが、これが機能しないのはなぜですか?