程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 類分頁

類分頁

編輯:關於PHP編程

9: 10: class Page { 11: var $firstRow = 0 ; // 起始行 12: var $listRows = 0 ; // 每頁顯示列表行數 13: var $parameter = ""; // 頁數跳轉時要帶的參數 14: var $totalPages = 0 ; // 總頁數 15: var $totalRows = 0 ; // 總行數 16: var $nowPage = 0 ; // 當前頁數 17: var $showPageJump = True; // 是否顯示跳到第幾頁 18: var $coolPages = 0 ; // 分頁的欄的總頁數 19: var $rollPage = 5; // 分頁欄每頁顯示的頁數 20: 21: /*-------------------------------------------------------------------------- 22: 功能:顯示分頁信息第 x 頁 共 x 頁 << < 6 7 8 9 10 > >> 23: -----------------------------------------------------------------------------*/ 24: function prompt() { 25: if(0 == $this->totalRows) { 26: return; 27: } 28: $this->totalPages=ceil($this->totalRows/$this->listRows); //總頁數 29: $this->coolPages = ceil($this->totalPages/$this->rollPage); 30: if ( $this->firstRow >= $this->totalRows ) { // 2003-12-30 17:18:29 kinger modified 31: $this->nowPage = $this->totalPages; 32: $this->firstRow = ($this->totalPages-1)*$this->listRows; 33: } else { 34: $this->nowPage=floor($this->firstRow/$this->listRows+1); //當前頁號 35: } 36: $nowCoolPage = ceil($this->nowPage/$this->rollPage); 37: 38: // << < > >> 39: if($nowCoolPage == 1){ 40: $theFirst = ""; 41: $prePage = ""; 42: }else{ 43: $preRow = ($this->rollPage*($nowCoolPage-1)-1)*$this->listRows; 44: $prePage = "totalRows&$this->parameter><"; 45: $theFirst = "totalRows&$this->parameter><<"; 46: } 47: if($nowCoolPage == $this->coolPages){ 48: $nextPage = ""; 49: $theEnd=""; 50: }else{ 51: $nextRow = ($nowCoolPage*$this->rollPage)*$this->listRows; 52: $theEndRow = ($this->totalPages-1)*$this->listRows; 53: $nextPage = "totalRows&$this->parameter>>"; 54: $theEnd = "totalRows&$this->parameter>>>"; 55: } 56: // 1 2 3 4 5 57: $linkPage = ""; 58: for($i=1;$i<=$this->rollPage;$i++){ 59: $page=($nowCoolPage-1)*$this->rollPage+$i; 60: $rows=($page-1)*$this->listRows; 61: if($page!=$this->nowPage){ 62: if($page<=$this->totalPages){ 63: $linkPage .= " totalRows&$this->parameter>".$page.""; 64: }else{ 65: break; 66: } 67: }else{ 68: if($this->totalPages != 1){ 69: $linkPage .= " [".$page."

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved