PHP 는 대상 을 대상 으로 봉 인 된 페이지 클래스 예 시 를 기반 으로 합 니 다

이 실례 는 PHP 가 대상 을 대상 으로 봉 인 된 페이지 클래스 를 바탕 으로 하 는 것 을 설명 한다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.

<?php
  class Page
  {
    protected $num;//      
    protected $total;//    
    protected $pageCount;//   
    protected $current;//    
    protected $offset;//   
    protected $limit;//    
    /**
     *     
     * @param int $total     
     * @param int $num        
     */
    public function __construct($total,$num=5)
    {
      //1.      
      $this->num = $num;
      //2.    
      $this->total = $total;
      //3.   
      $this->pageCount = ceil($total/$num);
      //4.   
      $this->offset = ($this->current-1)*$num;
      //5.    
      $this->limit = "{$this->offset},{$this->num}";
      //6.      
      $this->current();
    }
    /**
     *       
     */
    public function current(){
      $this->current = isset($_GET['page'])?$_GET['page']:'1';
      //         
      if ($this->current>$this->pageCount){
        $this->current = $this->pageCount;
      }
      //         
      if ($this->current<1){
        $this->current = 1;
      }
    }
    /**
     *           
     * @param string $key       
     * @return float|int|string           
     */
    public function __get($key){
      if ($key == "limit") {
        return $this->limit;
      }
      if ($key == "offset") {
        return $this->offset;
      }
      if ($key == "current") {
        return $this->current;
      }
    }
    /**
     *       
     * @return string         
     */
    public function show(){
      //      
      $_GET['page'] = isset($_GET['page'])?$_GET['page']:'1';
      // $_GET       
      $first = $end = $prev = $next = $_GET;
      // var_dump($prev);
      //   
      //       
      if ($this->current-1<1){
        $prev['page'] = 1;
      }else{
        $prev['page'] = $this->current-1;
      }
      //   
      //       
      if ($this->current+1>$this->pageCount) {
        $next["page"] = $this->pageCount;
      }else{
        $next['page'] = $this->current+1;
      }
      /*
        
      $first['page'] = 1; 
      //  
      $end['page'] = $this->pageCount;
      */
      //    
      $url = "http://".$_SERVER["SERVER_NAME"].$_SERVER["SCRIPT_NAME"];
      //    url     ?    
      //http://xxx/xxx/Page.class.php?page= 
      $prev = http_build_query($prev);
      $next = http_build_query($next);
      // $first = http_build_query($first);
      // $end = http_build_query($end);
      //      
      $prevpath = $url."?".$prev;
      $nextpath = $url."?".$next;
      // $firstpath = $url."?".$first;
      // $endpath = $url."?".$end;
      $str = "  {$this->total}      {$this->pageCount}  ";
      $str .= "<a href='{$url}?page=1'>  </a> ";
      $str .= "<a href='{$prevpath}'>   </a> ";
      $str .= "<a href='{$nextpath}'>   </a> ";
      $str .= "<a href='{$url}?page={$this->pageCount}'>  </a> ";
      return $str;
    }
  }
  //    
  $a = new Page(10);
  echo $a->show();
?>

더 많은 PHP 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 논문 에서 말 한 것 이 여러분 의 PHP 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기