Home >Backend Development >PHP Tutorial >Bisi Forum discuz DISCUZ paging code

Bisi Forum discuz DISCUZ paging code

WBOY
WBOYOriginal
2016-07-29 08:36:0313982browse

Copy the 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;    
}    
?>   

以上就介绍了比思论坛 discuz DISCUZ 分页代码,包括了比思论坛 discuz方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

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:Delphi unit files how to hide your php filesNext article:Delphi unit files how to hide your php files

Related articles

See more