優れたPHPページングクラスコード

WBOY
リリース: 2016-07-25 09:05:18
オリジナル
801 人が閲覧しました
  1. /**

  2. * ファイル名: ext_page.class.php
  3. * @package:phpbean
  4. * @author :feifengxlq
  5. * @copyright :Copyright 2006 feifengxlq
  6. * @license:version 2.0
  7. * 説明: ページング クラス、 4 つのページング モード
  8. * 2.0 の追加機能: カスタム スタイル、カスタム スタイルのサポート、PHP4 と PHP5 の両方をサポート、
  9. * 詳細については、http://www.phpobject.net/blog/read.php を参照してください
  10. * 例:
  11. * 4 つのページング モード:
  12. require_once('../libs/classes/page.class.php');
  13. $page=new page(array('total'=>1000,'perpage' =>20) );
  14. echo 'mode:1
    '.$page->show();
  15. echo '
    mode:2
    '.$page->show(2 );
    mode:3
    '.$page->show(3);
  16. echo '
    mode:4
    '.$page->show(4 );
  17. AJAX を有効にする:
  18. $ajaxpage=new page(array('total'=>1000,'perpage'=>20,'ajax'=>'ajax_page','page_name'=>'test' )); 'mode:1
    '.$ajaxpage->show();
  19. 継承されたカスタム ページング表示モードを採用:
  20. demo:http://www.phpobject.net/blog
  21. */
  22. クラスページ
  23. {
  24. /**
  25. * 設定、公開
  26. */
  27. var $page_name="PB_page";// ページタグ, URL ページの制御に使用されます
  28. var $next_page='>';//次のページ
  29. var $pre_page='<';//前のページ
  30. var $first_page='First';//Homepage
  31. var $ last_page ='Last';//最後のページ
  32. var $pre_bar='<<';//前のページングバー
  33. var $next_bar='>>';//次のページングバー
  34. var $format_left ='[ ';
  35. var $format_right=']';
  36. var $is_ajax=false;//AJAX ページング モードがサポートされているかどうか

  37. /**

  38. *プライベート
  39. *
  40. */
  41. var $pagebarnum =10; //レコードストリップの数を制御します。
  42. var $totalpage=0;//総ページ数
  43. var $ajax_action_name='';//AJAXアクション名
  44. var $nowindex=1;//現在のページ
  45. var $url="";//URLアドレスヘッダー
  46. var $offset=0;

  47. /**

  48. * コンストラクター构造関数数
  49. *
  50. * @param array $array['total'],$array['perpage'],$array['nowindex'],$array['url'],$array['ajax' ]
  51. */
  52. 関数ページ($array)
  53. {
  54. if(is_array($array)){
  55. if(!array_key_exists( ' 合計',$array))$this->error(__FUNCTION__,'合計のパラメータが必要です');
  56. $total=intval($array['total']);
  57. $perpage=(array_key_exists('perpage) ' ,$array))?intval($array['perpage']):10;
  58. $nowindex=(array_key_exists('nowindex',$array))?intval($array['nowindex']):'';
  59. $url=(array_key_exists('url',$array))?$array['url']:'';
  60. $total=$array;
  61. $nowindex=''; ;
  62. $url='';
  63. }
  64. if((!is_int($total))||($totalif((!is_int($perpage))||($perpageerror(__FUNCTION__,$perpage.' は正の整数ではありません!'); ( $array['page_name']))$this->set('page_name',$array['page_name']);// ページ名を設定します
  65. $this->_set_nowindex($nowindex);//現在のページ
  66. $this->_set_url($url);//リンクアドレスを設定
  67. $this->totalpage=ceil($total/$perpage);
  68. $this->offset=($this->) ;nowindex- 1)*$perpage;
  69. if(!empty($array['ajax']))$this->open_ajax($array['ajax']);//AJAX モードを開く
  70. }
  71. /* *
  72. * 指定された変数名の値をクラスに設定します。変更がこのクラスに属さない場合、例外がスローされます
  73. *
  74. * @param string $var
  75. * @param string $value
  76. */
  77. 関数 set($var,$value)
  78. {
  79. if(in_array($var,get_object_vars($this)))
  80. $this->$var=$value;
  81. $ this-> ;error(__FUNCTION__,$var." は PB_Page に属しません!");
  82. }

  83. }

  84. /**
  85. * 反転 AJAX モードをオンにします
  86. *
  87. * @ param string $action デフォルトの Ajax トリガーアクション。
  88. */
  89. function open_ajax($action)
  90. {
  91. $this->is_ajax=true;
  92. $this->ajax_action_name=$action;
  93. }
  94. /**
  95. * 「次のページ」を表示するコードを取得します
  96. *
  97. * @param string $style
  98. * @return string
  99. */
  100. function next_page($style='')
  101. {
  102. if($this->nowindextotalpage){
  103. return $this->_get_link( $this->_get_url($this->>nowindex+1),$this->next_page,$style);
  104. }
  105. return ''.$this->next_page.'';
  106. }

  107. /**

  108. * 「前のページ」を表示するコードを取得します
  109. *
  110. * @param string $style
  111. * @return string
  112. */
  113. function pre_page($style='')
  114. {
  115. if($this->nowindex>1){
  116. return $this- >_get_link($this->_get_url($this->nowindex-1),$this->pre_page,$style);
  117. }
  118. return ''.$this->pre_page.'';
  119. }

  120. /**

  121. * 「ホームページ」を表示するコードを取得します
  122. *
  123. * @return string
  124. */
  125. function first_page($style='')
  126. {
  127. if($this->nowindex==1){
  128. return '< ;span class=".$style.">'.$this->first_page.'';
  129. }
  130. return $this->_get_link($this->_get_url(1),$this->first_page,$style);
  131. }

  132. /**

  133. * 「最後のページ」を表示するコードを取得します
  134. *
  135. * @return string
  136. */
  137. function last_page($style='')
  138. {
  139. if($this->nowindex==$this->totalpage) {
  140. return ''.$this->last_page.'';
  141. }
  142. return $this->_get_link($this->_get_url($this->totalpage),$this->last_page,$style);
  143. }

  144. 関数 nowbar($style='',$nowindex_style='')

  145. {
  146. $plus=ceil($this->pagebarnum/2);
  147. if($this->pagebarnum-$plus+$this->nowindex>$this->totalpage)$plus=($this->pagebarnum-$this->totalpage+$this->nowindex) ;
  148. $begin=$this->nowindex-$plus+1;
  149. $begin=($begin>=1)?$begin:1;
  150. $return='';
  151. for($i=$begin;$i<$begin+$this->pagebarnum;$i++)
  152. {
  153. if($i<=$this->totalpage){
  154. if($i!=$this ->nowindex)
  155. $return.=$this->_get_text($this->_get_link($this->_get_url($i),$i,$style));
  156. else
  157. $return.=$this->_get_text(''.$i.'');
  158. }else{
  159. 休憩;
  160. }
  161. $return.="n";
  162. }
  163. unset($begin);
  164. return $return;
  165. }
  166. /**
  167. * ジャンプボタンを表示するコードを取得します
  168. *
  169. * @return string
  170. */
  171. function select()
  172. {
  173. $return='';
  174. return $return;
  175. }

  176. /**

  177. * mysql ステートメントの制限に必要な値を取得します
  178. *
  179. * @return string
  180. */
  181. function offset()
  182. {
  183. return $this->offset;
  184. }

  185. /**

  186. * ページング表示スタイルの制御
  187. *
  188. * @param int $mode
  189. * @return string
  190. */
  191. function show($mode=1)
  192. {
  193. switch ($mode)
  194. {
  195. case '1':
  196. $this->next_page ='次の一页';
  197. $this->pre_page='上一页';
  198. return $this->pre_page().$this->nowbar().$this->next_page().'第'.$this->select().'页';
  199. 休憩;
  200. ケース '2':
  201. $this->next_page='次の一页';
  202. $this->pre_page='上一页';
  203. $this->first_page='首页';
  204. $this->last_page='尾页';
  205. return $this->first_page().$this->pre_page().'[第'.$this->nowindex.'页]'.$this->next_page().$this-> ;last_page().'第'.$this->select().'页';
  206. 休憩;
  207. ケース '3':
  208. $this->next_page='次の一页';
  209. $this->pre_page='上一页';
  210. $this->first_page='首页';
  211. $this->last_page='尾页';
  212. return $this->first_page().$this->pre_page().$this->next_page().$this->last_page();
  213. 休憩;
  214. ケース '4':
  215. $this->next_page='次の一页';
  216. $this->pre_page='上一页';
  217. return $this->pre_page().$this->nowbar().$this->next_page();
  218. 休憩;
  219. ケース '5':
  220. return $this->pre_bar().$this->pre_page().$this->nowbar().$this->next_page().$this->next_bar ();
  221. 休憩;
  222. }

  223. }

  224. /*------private function (私有方法)---------*/
  225. /**@link: http://bbs.it-home.org
  226. * URL ヘッダーアドレスを設定します
  227. * @param: String $url
  228. * @return boolean
  229. */
  230. function _set_url($url="")
  231. {
  232. if(!empty($url)){
  233. //手動設定
  234. $this->url=$url.((stristr($url,'?'))? '&':'?').$this->page_name."=";
  235. }else{
  236. //自動获取
  237. if(empty($_SERVER['QUERY_STRING'])){
  238. //QUERY_STRING が存在しないとき
  239. $this->url=$_SERVER['REQUEST_URI']."?" .$this->ページ名."=";
  240. }else{
  241. //
  242. if(stristr($_SERVER['QUERY_STRING'],$this->page_name.'=')){
  243. //地址存在页面パラメータ
  244. $this->url=str_replace( $this->page_name.'='.$this->nowindex,'',$_SERVER['REQUEST_URI']);
  245. $last=$this->url[strlen($this->url)-1];
  246. if($last=='?'||$last=='&'){
  247. $this->url.=$this->page_name."=";
  248. }else{
  249. $this->url.='&'.$this->page_name."=";
  250. }
  251. }else{
  252. //
  253. $this->url=$_SERVER['REQUEST_URI'].'&'.$this->page_name.'=';
  254. }//end if
  255. }//end if
  256. }//end if
  257. }

  258. /**

  259. * 現在のページを設定します
  260. *
  261. */
  262. function _set_nowindex($nowindex)
  263. {
  264. if( empty($nowindex)){
  265. //系统获取

  266. if(isset($_GET[$this->page_name])){

  267. $this->nowindex=intval($ _GET[$this->ページ名]);
  268. }
  269. }else{
  270. //手動設定
  271. $this->nowindex=intval($nowindex);
  272. }
  273. }

  274. /**

  275. * 指定されたページのアドレス値を返します
  276. *
  277. * @param int $pageno
  278. * @return string $url
  279. */
  280. function _get_url($pageno=1)
  281. {
  282. return $this->url.$pageno;
  283. }

  284. /**

  285. * ページネーションの表示テキストを取得します。たとえば、デフォルトでは _get_text('1') は [1] を返します
  286. *
  287. * @param 文字列 $str
  288. * @return 文字列 $url
  289. */
  290. function _get_text($str)
  291. {
  292. return $this->format_left.$str.$this->format_right;
  293. }

  294. /**

  295. * リンクアドレスを取得します
  296. */
  297. function _get_link($url,$text,$style=''){
  298. $style=(empty($style))?' ':'class="'.$style.'"';
  299. if($this->is_ajax){
  300. //場合によりAJAXモードを使用します
  301. return ''.$text.'';
  302. }else{
  303. return ''.$text.'';
  304. }
  305. }
  306. /**
  307. * エラー処理方法
  308. */
  309. function error($function,$errormsg)
  310. {
  311. die('ファイル '.__FILE__.' ,Function < b>'.$function.'() :'.$errormsg);
  312. }
  313. }
  314. $page=新しいページ(array('total'=>1000,'perpage'=>20));
  315. echo 'mode:1
    '.$page->show();
  316. echo '
    mode:2
    '.$page->show(2);
  317. echo '
    mode:3
    '.$page->show(3);
  318. echo '
    mode:4
    '.$page->show(4);
  319. echo '
    开開始AJAXモード:';
  320. $ajaxpage=新しいページ(array('total'=>1000,'perpage'=>20,'ajax'=>'ajax_page','page_name'=>'test'));
  321. echo 'mode:1
    '.$ajaxpage->show();
  322. ?>

复制帽


ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート