Home  >  Article  >  php教程  >  PHP区间分页

PHP区间分页

WBOY
WBOYOriginal
2016-06-13 10:44:52977browse

Php代码 
function outpage($page_total,$page_no,$page_limit=5) { 
    $page_list = ''; 
 
    $max = $page_no >= $page_limit ? $page_no + $page_limit : 10; 
 
    if ($max > $ps) $max = $ps; 
    $min = $page_no - $page_limit; 
    if ($min     if ($page_no > 1) $page_list .= '首页'; 
    for ($i=$min; $i     $page_list .= $page_no >= $page_total ? '' : '尾页'; 

 
调用:
 
Php代码 
echo outpage($page_total,$_GET['page'],6); 

作者“cevin@iteye”
 

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