その特徴: シンプル、パラメータを受け入れ、ページネーションを提供します; 柔軟: 前と次のページの名前 (たとえば、prev、next などと呼びたい) でページネーションの数を決定できます。各ページに表示される情報とクロスページの数。たとえば、一部の Web ページでは、各ページに li(
1) を含める必要があります。
...) など 注: 提供されているサンプル コードには 2 つの静的メソッドがありますが、無視してかまいません。これは私自身のプロジェクト開発用です。 Call::import は、URL::refresh の代わりに include を使用できます。これはここでは説明しません。機会があれば説明します。getUrl( メソッドを使用します。 ) このページ http://www.oschin a.net/code/snippet_182375_6242
[PHP] コード
- /**
- * FILE_NAME : Pages.php FILE_PATH : /lv/view/
- * 分页类
- *
- * @copyright Copyright (c) 2006-2010 mailTo:levi@cgfeel.com
- * @author Levi
- * @package lv.view .Pages
- * @subpackage
- * @version 2011-10-03
- */
- Call::import('lv.url.URL');
- class Pages
- {
- public $num = 1;
- public $size = 50;
- public $current = 1;
- private $_pages = array();
- private $_title = array();
- public function __construct($count, $size = 50)
- {
- $this-> num = ceil($count / $size);
- $size > 0 && $this->size = (Int)$size;
-
- $page = isset($_GET['page']) (Int)トリム($_GET['ページ']) : 1;
- $page > 1 && $this->current = (Int)$page;
-
- $this->_title = array('前のページ', ' 1..', $this->num.'..', '次のページ');
- }
-
- /**
- * パッケージのページング
- * @param String|Array $スカート
- * @param Array $entitle
- * @return String
- */
- public function warp($スカート, $entitle = array( ))
- {
- empty($this->_pages) && $this->get();
-
- $entitle += $this->_title;
- $スカート = (配列)$スカート + 配列(' ', NULL);
- $data = implode($スカート[1].$スカート[0], $this->_pages);
- !is_null($スカート[1]) && $data = $スカート[0] .$ data.$スカート[1];
-
- return vsprintf($data, $entitle);
- }
-
- /**
- * ページネーションを取得します
- * @param Int $num ページネーション番号を表示します
- * @param Int $span ページネーション間隔
- */
- public function get($num = '5', $span = ' 2' )
- {
- $this->pages = array();
- $start = $this->current - $num + $span;
- $start
- $end = $ start + $num;
- $end > $this->num && $end = (Int)$this->num;
-
- $this->current > _pages [] = $this->_setPage($this->current - 1, '%1$s');
- $start > 1 && $this->_pages[] = $this->_setPage( NULL, '%2$s');
- for($i = $start; $i _pages[] = $this->_setPage($i, $ i) ;
-
- $end < $this->num && $this->_pages[] = $this->_setPage($this->num, '%3$s');
- $this -> ;current < $this->num && $this->_pages[] = $this->_setPage($this->current + 1, '%4$s');
-
- return (配列) $this->_pages;
- }
-
- プライベート関数 _setPage($page, $name = '%s')
- {
- $hover = $page == $this->current ' class="pageHover "' : '';
- return sprintf('%s', URL::refresh(array('page' => $page)), $ hover, $name);
- }
- }
- ?>
コードをコピー
使用デモ
- $pages = new Pages(100, 20);
- $pages->warp('|');
コードをコピー
|