Home  >  Article  >  Backend Development  >  DISCUZ pagination code_PHP tutorial

DISCUZ pagination code_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:58:141075browse

Copy code The code is as follows:
/*   
    [Discuz!] (C)2001-2006 Comsenz Inc.   
    This is NOT a freeware, use is subject to license terms   

    $RCSfile: global.func.php,v $   
    $Revision: 1.83.2.7 $   
    $Date: 2006/10/27 08:08:18 $   
*/   

function multi($num, $perpage, $curpage, $mpurl, $maxpages = 0) {    
    $multipage = '';    
    $mpurl .= strpos($mpurl, '?') ? '&' : '?';    
    if($num > $perpage) {    
        $page = 10;    
        $offset = 2;    

        $realpages = @ceil($num / $perpage);    
        $pages = $maxpages && $maxpages < $realpages ? $maxpages : $realpages;    

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

        $multipage = ($curpage - $offset > 1 && $pages > $page ? '|?' : '').    
            ($curpage > 1 ? '??' : '');    
        for($i = $from; $i <= $to; $i++) {    
            $multipage .= $i == $curpage ? ''.$i.'' :    
                ''.$i.'';    
        }    

        $multipage .= ($curpage < $pages ? '??' : '').    
            ($to < $pages ? '?|' : '').    
            ($curpage == $maxpages ? '??' : '').    
            ($pages > $page ? '' : '');    

        $multipage = $multipage ? ' '.$num.'  '.$curpage.'/'.$realpages.' '.$multipage.'
' : '';    
    }    
    return $multipage;    
}    
?>   

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/317647.htmlTechArticle复制代码 代码如下: ?php /* [Discuz!](C)2001-2006ComsenzInc. ThisisNOTafreeware,useissubjecttolicenseterms $RCSfile:global.func.php,v$ $Revision:1.83.2.7$ $Date:2006/10/2708...
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
Previous article:Data operation classes and paging classes used in phpfans message board_PHP tutorialNext article:Data operation classes and paging classes used in phpfans message board_PHP tutorial

Related articles

See more