> php教程 > php手册 > 본문

一个翻页类

WBOY
풀어 주다: 2016-06-21 09:11:57
원래의
987명이 탐색했습니다.

翻页

老东西了,不少站点都有这个方法了(今天突然发现以前没用,所以就写了一下)
------------
class Page{
    private $totalpage;
    private $stride;
    private $currentpage;
    //设置总页数
    function setTotalpage($objpage=0){
        $this->totalpage=$objpage;
    }
    //设置当前页
    function setCurrentpage($objpage=1){
        $this->currentpage=$objpage;
    }
    //设置跨度
    function setStride($objStride=1){
        $this->stride=$objStride;
    }
    //获得总页数
    function getTotalpage(){
        return $this->totalpage;
    }
    //获得跨读
    function getStride($objStride=1){
        return $this->stride;
    }
    //获取当前页
    function getCurrentpage($objpage=1){
        return $this->currentpage;
    }
    //打印分页
    function Pageprint(){
        for($Tmpa=0;$Tmpatotalpage;$Tmpa++){
            if($Tmpa+$this->stridecurrentpage){//加了跨度还小于当前页的不显示
                continue;
            }
            if($Tmpa+$this->stride==$this->currentpage){//刚好够跨度的页数
                $p=$this->currentpage-$this->stride-1;
                $willprint.="  ";
            }
            if($Tmpa>$this->currentpage+$this->stride){//大于当前页+跨度的页面
                break;
            }
            $willprint.="$Tmpa ";

            if($Tmpa==$this->currentpage+$this->stride){//刚好够跨度的页数
                $p=$this->currentpage+$this->stride+1;
                $willprint.="> totalpage\">>>";
            }
        }
        echo $willprint;
    }
}
if(isset($_GET[page])){
    $page=$_GET[page];
}else{
    $page=1;
}
$CC=new Page();
$CC->setTotalpage(1000);
$CC->setCurrentpage($page);
$CC->setStride(5);
$CC->Pageprint();
?>



관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿