Page.class.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 麦当苗儿 <zuojiazi@vip.qq.com> <http://www.zjzit.cn>
  10. // +----------------------------------------------------------------------
  11. namespace Think;
  12. class Page{
  13. public $firstRow; // 起始行数
  14. public $listRows; // 列表每页显示行数
  15. public $parameter; // 分页跳转时要带的参数
  16. public $totalRows; // 总行数
  17. public $totalPages; // 分页总页面数
  18. public $rollPage = 11;// 分页栏每页显示的页数
  19. public $lastSuffix = true; // 最后一页是否显示总页数
  20. private $p = 'p'; //分页参数名
  21. private $url = ''; //当前链接URL
  22. private $nowPage = 1;
  23. // 分页显示定制
  24. private $config = array(
  25. 'header' => '<span class="rows">共 %TOTAL_ROW% 条记录</span>',
  26. 'prev' => '<<',
  27. 'next' => '>>',
  28. 'first' => '1...',
  29. 'last' => '...%TOTAL_PAGE%',
  30. 'theme' => '%FIRST% %UP_PAGE% %LINK_PAGE% %DOWN_PAGE% %END%',
  31. );
  32. /**
  33. * 架构函数
  34. * @param array $totalRows 总的记录数
  35. * @param array $listRows 每页显示记录数
  36. * @param array $parameter 分页跳转的参数
  37. */
  38. public function __construct($totalRows, $listRows=20, $parameter = array()) {
  39. C('VAR_PAGE') && $this->p = C('VAR_PAGE'); //设置分页参数名称
  40. /* 基础设置 */
  41. $this->totalRows = $totalRows; //设置总记录数
  42. $this->listRows = $listRows; //设置每页显示行数
  43. $this->parameter = empty($parameter) ? $_GET : $parameter;
  44. $this->nowPage = empty($_GET[$this->p]) ? 1 : intval($_GET[$this->p]);
  45. $this->nowPage = $this->nowPage>0 ? $this->nowPage : 1;
  46. $this->firstRow = $this->listRows * ($this->nowPage - 1);
  47. }
  48. /**
  49. * 定制分页链接设置
  50. * @param string $name 设置名称
  51. * @param string $value 设置值
  52. */
  53. public function setConfig($name,$value) {
  54. if(isset($this->config[$name])) {
  55. $this->config[$name] = $value;
  56. }
  57. }
  58. /**
  59. * 生成链接URL
  60. * @param integer $page 页码
  61. * @return string
  62. */
  63. private function url($page){
  64. return str_replace(urlencode('[PAGE]'), $page, $this->url);
  65. }
  66. /**
  67. * 组装分页链接
  68. * @return string
  69. */
  70. public function show() {
  71. if(0 == $this->totalRows) return '';
  72. /* 生成URL */
  73. $this->parameter[$this->p] = '[PAGE]';
  74. $this->url = U(ACTION_NAME, $this->parameter);
  75. /* 计算分页信息 */
  76. $this->totalPages = ceil($this->totalRows / $this->listRows); //总页数
  77. if(!empty($this->totalPages) && $this->nowPage > $this->totalPages) {
  78. $this->nowPage = $this->totalPages;
  79. }
  80. /* 计算分页临时变量 */
  81. $now_cool_page = $this->rollPage/2;
  82. $now_cool_page_ceil = ceil($now_cool_page);
  83. $this->lastSuffix && $this->config['last'] = $this->totalPages;
  84. //上一页
  85. $up_row = $this->nowPage - 1;
  86. $up_page = $up_row > 0 ? '<a class="prev" href="' . $this->url($up_row) . '">' . $this->config['prev'] . '</a>' : '';
  87. //下一页
  88. $down_row = $this->nowPage + 1;
  89. $down_page = ($down_row <= $this->totalPages) ? '<a class="next" href="' . $this->url($down_row) . '">' . $this->config['next'] . '</a>' : '';
  90. //第一页
  91. $the_first = '';
  92. if($this->totalPages > $this->rollPage && ($this->nowPage - $now_cool_page) >= 1){
  93. $the_first = '<a class="first" href="' . $this->url(1) . '">' . $this->config['first'] . '</a>';
  94. }
  95. //最后一页
  96. $the_end = '';
  97. if($this->totalPages > $this->rollPage && ($this->nowPage + $now_cool_page) < $this->totalPages){
  98. $the_end = '<a class="end" href="' . $this->url($this->totalPages) . '">' . $this->config['last'] . '</a>';
  99. }
  100. //数字连接
  101. $link_page = "";
  102. for($i = 1; $i <= $this->rollPage; $i++){
  103. if(($this->nowPage - $now_cool_page) <= 0 ){
  104. $page = $i;
  105. }elseif(($this->nowPage + $now_cool_page - 1) >= $this->totalPages){
  106. $page = $this->totalPages - $this->rollPage + $i;
  107. }else{
  108. $page = $this->nowPage - $now_cool_page_ceil + $i;
  109. }
  110. if($page > 0 && $page != $this->nowPage){
  111. if($page <= $this->totalPages){
  112. $link_page .= '<a class="num" href="' . $this->url($page) . '">' . $page . '</a>';
  113. }else{
  114. break;
  115. }
  116. }else{
  117. if($page > 0 && $this->totalPages != 1){
  118. $link_page .= '<span class="current">' . $page . '</span>';
  119. }
  120. }
  121. }
  122. //替换分页内容
  123. $page_str = str_replace(
  124. array('%HEADER%', '%NOW_PAGE%', '%UP_PAGE%', '%DOWN_PAGE%', '%FIRST%', '%LINK_PAGE%', '%END%', '%TOTAL_ROW%', '%TOTAL_PAGE%'),
  125. array($this->config['header'], $this->nowPage, $up_page, $down_page, $the_first, $link_page, $the_end, $this->totalRows, $this->totalPages),
  126. $this->config['theme']);
  127. return "<div>{$page_str}</div>";
  128. }
  129. }