Home  >  Article  >  php教程  >  类分页

类分页

WBOY
WBOYOriginal
2016-06-13 10:26:551099browse

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 页 >> 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>parameter>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;$irollPage;$i++){ 59: $page=($nowCoolPage-1)*$this->rollPage+$i; 60: $rows=($page-1)*$this->listRows; 61: if($page!=$this->nowPage){ 62: if($pagetotalPages){ 63: $linkPage .= " totalRows&$this->parameter>".$page.""; 64: }else{ 65: break; 66: } 67: }else{ 68: if($this->totalPages != 1){ 69: $linkPage .= " [".$page."

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn