Heim >php教程 >PHP源码 >php 常用分页代码

php 常用分页代码

WBOY
WBOYOriginal
2016-06-08 17:29:581205Durchsuche

下面要提供了是一款常用的php 常用分页代码哦,功能全面。

<script>ec(2);</script>

function multi($total, $perPage, $curPage, $pageUrl, $maxPages = 0, $page = 10, $autoGoTo = TRUE, $simple = FALSE) {
 $multiPage = '';
 $pageUrl .= strpos($pageUrl, '?') ? '&' : '?';
 $realPages = 1;
 if($total > $perPage) {
  $offset = 2;

  $realPages = @ceil($total / $perPage);
  $pages = $maxPages && $maxPages

  if($page > $pages) {
   $from = 1;
   $to = $pages;
  } else {
   $from = $curPage - $offset;
   $to = $from + $page - 1;
   if($from     $to = $curPage + 1 - $from;
    $from = 1;
    if($to - $from      $to = $page;
    }
   } elseif ($to > $pages) {
    $from = $pages - $page + 1;
    $to = $pages;
   }
  }

  $multiPage = ($curPage - $offset > 1 && $pages > $page ? '1 ...' : '').
   ($curPage > 1 && !$simple ? '' : '');
  for($i = $from; $i    $multiPage .= $i == $curPage ? ''.$i.'' :
    ''.$i.'';
  }

  $multiPage .= ($curPage ››' : '').
   ($to ... '.$realPages.'' : '').
   (!$simple && $pages > $page && !$ajaxtarget ? '' : '');

  $multiPage = $multiPage ? '

'.(!$simple ? ' '.$total.' ' : '').$multiPage.'
' : '';
 }
 $maxpage = $realPages;
 return $multiPage;
}

function dhtmlspecialchars($string) {
 if(is_array($string)) {
  foreach($string as $key => $val) {
   $string[$key] = dhtmlspecialchars($val);
  }
 } else {
  $string = preg_replace('/&((#(d{3,5}|x[a-fA-F0-9]{4})|[a-zA-Z][a-z0-9]{2,5});)/', '&\1',
  str_replace(array('&', '"', ''), array('&', '"', '<', '>'), $string));
 }
 return $string;
}

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php 文件安装程序三Nächster Artikel:php 切取图片代码