Home  >  Article  >  Backend Development  >  Paging code is necessary for PHP development_PHP tutorial

Paging code is necessary for PHP development_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 16:55:24845browse

This paging function is definitely indispensable in development. Today we share a very practical and simple PHP paging function implementation code. Friends in need can refer to it.

 代码如下 复制代码

/**
* 分页函数
*
* @param int $count 条目总数
* @param int $perlogs 每页显示条数目
* @param int $page 当前页码
* @param string $url 页码的地址
*/
function pagination($count,$perlogs,$page,$url,$anchor=''){
$pnums = @ceil($count / $perlogs);
$re = '';
$urlHome = preg_replace("|[?&/][^./?&=]*page[=/-]|","",$url);
for ($i = $page-5;$i <= $page+5 && $i <= $pnums; $i++){
if ($i > 0){
if ($i == $page){
$re .= " $i ";
} elseif($i == 1) {
$re .= " $i ";
} else {
$re .= " $i ";
}
}
}
if ($page > 6) $re = "«...$re";
if ($page + 5 < $pnums) $re .= "... »";
if ($pnums <= 1) $re = '';
return $re;
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/631677.htmlTechArticleThis paging function is definitely indispensable in development. Today we share a very practical and simple PHP paging function. Implementation code, friends in need can refer to it. The code is like...
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