-
/**
- * シンプルなページングクラス
- * Page.class.php
- */
- class Page
- {
- private $page_num; //各ページに表示されるメッセージ数
- private $page_all_no //メッセージの総数
- private $page_len; //表示されるページ番号
- private $page; //現在のページ番号
- private $page_no_array //ページ番号の配列
- public $start_num;クエリ文の開始値 limit
- private $page_change; //ページ番号が増加し始めるページ数
- private $URL; //現在のページの URL を取得します
__construct($page_all_no, $page_num=5, $page_len=5)
- {
- $this->gt;page_all_no = intval($page_all_no);
- $this->page_num = intval($page_num);
- $this-> ;page_len = intval( $page_len);
- $this->URL = $_SERVER['REQUEST_URI'];
- $this->max_page() //最大ページ数を取得します
- $this->page_no (); // 現在のページ番号を取得します
- $this->page_no_array(); // ページ番号の配列
- $this->start_num(); // SQL ステートメントの制限の開始値を取得します
- $this ->change_page(); //増分が開始されるページ番号を取得 $this->page_change
- $this->getURL(); //現在の URL を取得して処理し、return
- }> ;
プライベート関数 isArray($str ,$str_self)
- {
- if(!is_array($str)) throw new Exception("$str_self は Array 型である必要があります");
- }
プライベート関数 page_no()
- {
- $this->page = isset($_GET['page']) $_GET['page'] : 1;
- if(isset($_GET['ページ']) && $_GET['ページ'] page = 1;
- if(isset($_GET['ページ']) && $_GET['ページ'] > $this ->page_max) $this->page = $this->page_max;
- return $this->page;
- }
プライベート関数 max_page()
- {
- return $ this->page_max = $this->page_all_no page_all_no/$this->page_num);
- }
プライベート関数change_page()
- {
- return $this-> page_change = ceil($this->page_len / 2);
- }
プライベート関数 page_no_array()
- {
- return $this- >page_no_array = range(1, $this-> ;page_max);
- }
プライベート関数 start_num()
- {
- return $this->start_num = $this->page_num * ($this->page - 1);
- }
プライベート関数 getURL()
- {
- if(!empty($_SERVER['argc']) ? $_SERVER[' argc'] == 0 : strpos($_SERVER[ 'REQUEST_URI'], '?') === false)
- {
- $this->URL = $this->URL.'?';
- }else {
- $url_a = "/?page=[0 -9]{1,}/";
- $url_b = "/&page=[0-9]{1,}/";
- ereg("?page=[ 0-9]{1,}", $this ->URL) ? $this->URL = preg_replace($url_a, "?", $this->URL):
- ereg("&page=[0 -9]{1,}", $this->URL) ? $this->URL = preg_replace($url_b, "&", $this->URL):$this->URL = $this ->URL.'&';
- }
- return $this->URL;
- }
private function header_info($total_data_modifier='合計数:', $total_page_modifier='合計ページ数:', $current_page_modifier='現在のページ:' , $header_info_modifier='', $header_data_color = 'red'){
- if($this->page_max != 1 && $this->page_all_no != 0)
- {
- $header_info = $total_data_modifier.''.$this->page_all_no.'> ;';
- $header_info .= $total_page_modifier.''.$this->page_max.'> ;';
- $header_info .= $current_page_modifier.''.$this->page.' ; ."rn";
- if(!empty($header_info_modifier)) $header_info = $header_info_modifier.$header_info;
- return $header_info;
- }else{
- return NULL;
- }
- }
- private 関数 first($first_format = '最初のページ ')
- {
- return $this->page == 1 ? $first_format."rn" : ''.$first_format.''."rn";
- }
プライベート関数 last($last_format = '上一页')
- {
- if($this->page == 1) return $last_format."rn";
- return $this ->ページ-1 == 1 ? ''.$last_format.''."rn" : ' '.$last_format.''."rn";
- }
プライベート関数 page_num_format($separator=' ', $left_modifier='[', $right_modifier=' ]', $both_sides=false, $current_page_color = 'red')
- {
- empty($separator) ? $separator = ' ' : $separator;
- $page_array = '';
- if($this->page_max page_len)
- {
- for ($i=0; $i page_max; $i++)
- {
- if($this->page_no_array[$i] == $this->page)
- {
- $the[$i] = ''.$left_modifier.$this->page_no_array[$i].$right_modifier.''."rn ";
- }else{
- if($i == 0)
- {
- $page_one = substr($this->URL,0,strlen($this->URL)-1);
- $the[$ i] = ''.$left_modifier.$this->page_no_array[$i].$right_modifier.''."rn";
- }else{
- $the[$i] = ''。 $left_modifier.$this->page_no_array[$i].$right_modifier.''."rn";
- }
- }
- $page_array .= $the[$i].$separator;
- }
- if($both_sides === false)
- {
- $page_array = substr($page_array,0,strrpos($page_array, $separator));
- }elseif ($both_sides === true){
- $page_array = $ separator.$page_array;
- }else{
- throw new Exception('エラー: $both_sides はブール型である必要があります。');
- }
- }else{
- if($this->page {
- $i_start = 0;
- }else{
- $i_start = $this->page - $this->page_change;
- //如果最大的页码已显示,那么开始页就不会在递增
- if($i_start >= $this->page_max - $this->page_len){
- $i_start = $this->page_max - $this->page_len;
- }
- }
- $i_end = ($i_start+$this->page_len) - 1;
- for ($i = $i_start; $i {
- if($this->page_no_array[$i] == $this->page)
- {
- $the[$i] = ''.$left_modifier.$this->page_no_array[$i].$right_modifier.''."rn";
- } else{
- if($i == 0)
- {
- $page_one = substr($this->URL,0,strlen($this->URL)-1);
- $the[$i] = ' '.$left_modifier.$this->page_no_array[$i].$right_modifier.''."rn";
- }else{
- $the[$i] = ''.$left_modifier.$ this->page_no_array[$i].$right_modifier.''."rn";
- }
- }
- $page_array .= $the[$i].$separator;
- }
- if($ Both_sides === false)
- {
- $page_array = substr($page_array,0,strrpos($page_array, $separator));
- }elseif ($both_sides === true){
- $page_array = $separator.$page_array ;
- }else{
- throw new Exception('エラー: $both_sides はブール型である必要があります。');
- }
- }
- return $page_array;
- }
private function next($ next_format = '下一页')
- {
- if($this->page >= $this->page_max) return $next_format."rn";
- return ''.$next_format.''."rn";
- }< ;/p>
private function end($end_format = '最終一页')
- {
- return $this->page>= $this->page_max ? $end_format."rn" : ''.$end_format.' '."rn";
- }
public function select_page($target='self', $select_page_mode='PMA', $value_left_modifier='', $value_right_modifier= '')
- {
- if($this->page_max != 1 && $this->page_all_no != 0)
- {
- if($select_page_mode === 'NORMAL')
- {
- $page_no_array = $this ->page_no_array;
- }elseif($select_page_mode === 'PMA'){
- $page_no_array = $this->PMA_page_no_array();
- }else{
- throw new Exception('$select_page_mode は不明なモードです');
- }
- $select_page = '';
- $select_page .= ''。 "n";
- return $select_page;
- }else{
- return NULL;
- }
- }
プライベート関数 PMA_page_no_array()
- {
- $showAll = 200;
- $sliceStart = 5;
- $sliceEnd = 5;
- $percent = 20;
- $range = 10;
if ($this->page_max $this->PMA_page_no_array = range(1, $this->page_max);
- } else {
- $this->PMA_page_no_array = array();
- for ($i = 1; $i $ this->PMA_page_no_array[] = $i;
- }
- for ($i = $this->page_max - $sliceEnd; $i page_max; $i++) {
- $this-> ;PMA_page_no_array[] = $i;
- }
- $i = $sliceStart;
- $x = $this->page_max - $sliceEnd;
- $met_boundary = false;
- while ($i if ($i >= ($this->page - $range) && $i page + $range)) {
- $i++;
- $met_boundary = true;
- } else {
- $i = $i + Floor($this->page_max / $percent);
- if ($i > ($this->page - $range) && !$met_boundary) {
- $i = $ this->page - $range;
- }
- }
- if ($i > 0 && $i $this->PMA_page_no_array[] = $i;
- }
- }
- sort ($this->PMA_page_no_array);
- $this->PMA_page_no_array = array_unique($this->PMA_page_no_array);
- }
- return $this->PMA_page_no_array;
- }
public function key_change_page(){
- echo '> ;';
- }
パブリック関数 eshow()
- {
- return $this->last().$this->next();
- }
-
public function showForHelp()
- {
- return $this->first('首页', '').$this->last('上一页', '').$this-> page_num_format('', '', '', false, '#FF8500').$this->next('下一页', '').$this->end('尾页', '' );
- }
public function show()
- {
- return $this->header_info().$this->first('首页', '').$this- >last('上一页', '').$this->page_num_format('', '', '', false, '#FF8500').$this->next('下一页' , '').$this->end('尾页', '');
- }
- }
-
复制代码
2. PHPページングクラスの使用方法:
- header('content-type:text/html;charset=utf-8');
- include('Page.class.php');
- $page_all_no = 12000; //データ項目の総数
- $page_num = 25; //各ページに表示される項目の数を設定します
- $page_len = 7; //表示するページ番号の最大数
- $page = new Page($page_all_no, $page_num, $page_len);
- $start_num = $ page->start_num;
- $sql = "select * from tablelimit {$start_num}, {$page_num}";
- $page->key_change_page() // ページをめくるには矢印キー
- ; var_dump($sql);
- // 3 つのページング フォームが付属しており、必要に応じて新しいメソッドを追加できます。
- echo '
'.$page->select_page('self', 'NORMAL') を呼び出します。 ''; //ここでの 2 番目のパラメータはデフォルトで PMA モードになります
- echo '
'.$page->eshow()' p> ;';
- echo '
'.$page->show().' ';
-
コードをコピー
3、PHP ページング クラス、レンダリング:
|