CodeIgniter: How to get current page with pagination library

CodeIgniter 內建了一套功能完整的分頁函式庫,不過有時候需要知道現在是第幾頁時,卻不知道從何取得。

雖然在文件上沒有寫,不過實際上有個內部變數在紀錄目前的頁數,只要使用

$this->pagination->cur_page

就能取得目前的頁數。

<?php

echo '您正在閱讀第  '.$this->pagination->cur_page.' 頁,共 '.ceil(($this->pagination->total_rows/$this->pagination->per_page)). ' 頁。';

?>

Posted

in

by

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *