Home > Backend Development > PHP Tutorial > A better encapsulated digital paging method under PHP_PHP tutorial

A better encapsulated digital paging method under PHP_PHP tutorial

WBOY
Release: 2016-07-21 15:33:25
Original
750 people have browsed it

Copy code The code is as follows:

/**
* Get page number navigation HTML
* @param $pageNum: current page number
* @param $pageSize: number of each page
* @param $rowCount: total number of records
* @param $navUrl : Link page URL
*/
function getNavHtml($pageNum,$pageSize,$ rowCount,$navUrl){
$pageCount = (int)($rowCount/$pageSize); //Total number of pages
if ($rowCount % $pageSize >0){
$pageCount++;
}
if ($pageNum>$pageCount){
$pageNum = 1;
}
$firstNav = " Home ";
$lastNav = "Last page ";
$prevNav=" ";
$nextNav="";
if ($pageNum>1){
$navPageNum = $pageNum-1;
$prevNav = "Previous page ";
}
if ($pageNum<$pageCount && $pageCount>1){
$navPageNum = $pageNum+1 ;
$nextNav = "Next page ";
}
$amongNav="";

//Key loop

for ($i=1;$i<=5;$i++){
$navPageNum = $pageNum+ $i-3;
if ($navPageNum>0 && $navPageNum<=$pageCount){
$navCss = $navPageNum == $pageNum?" class="hover"":"";
$amongNav.="{$navPageNum} ";
}
}
return $firstNav.$prevNav.$amongNav.$nextNav .$lastNav." ".$pageNum."/".$pageCount." There are [".$rowCount."] pieces of data";
}
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/322642.htmlTechArticleCopy code The code is as follows: /** * Get page number navigation HTML * @param $pageNum: Current page number* @param $pageSize: number per page* @param $rowCount: total number of records* @param $navUrl: link...
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template