PHP——分頁顯示數據庫內容


test.php

<?php
    header("Content-Type:text/html;charset=utf-8");
    //加載分頁類
    include "page.class.php";
    
    //定義總數
    $total =0;
    
        //1.造連接對象
    $db = new mysqli("localhost","root","123","mydb");
    
    //2.判斷是否連接成功
    if(mysqli_connect_error())
    {    
        echo "連接失敗";
        
        //退出整個程序
        exit;
    }
    else
    {
        //3.寫SQL語句
        $sql = "select count(*) from ChinaStates";
        
        //4.執行SQL語句
        $result = $db->query($sql);
        
        $sj = $result->fetch_row();
        
        $total = $sj[0];
    
    
    
        //造分頁類的對象
        $page = new Page($total,20,"",true);
        //$page->set('prev',">>");
        
        //查數據庫並且顯示
        
        $sqlshow = "select * from ChinaStates ".$page->limit;
        
        $resultall = $db->query($sqlshow);
        
        echo "<table width='100%' border='1'>
            <tr>
                <td>地區代號</td>
                <td>地區名稱</td>
                <td>地區父級代號</td>
                <td>地區權限</td>
            </tr>
        ";
        
        
        while($row = $resultall->fetch_row())
        {
            echo "<tr><td>{$row[0]}</td><td>{$row[1]}</td><td>{$row[2]}</td><td>{$row[3]}</td></tr>";
        }
        
        echo "<tr><td colspan='4'>".$page->fpage()."</td></tr>";
        
        echo "</table>";
    
    }

    
    
    

定義的類

<?php
    /**
        file: page.class.php 
        完美分頁類 Page 
    */
    class Page {
        private $total;                            //數據表中總記錄數
        private $listRows;                         //每頁顯示行數
        private $limit;                            //SQL語句使用limit從句,限制獲取記錄個數
        private $uri;                              //自動獲取url的請求地址
        private $pageNum;                          //總頁數
        private $page;                            //當前頁    
        private $config = array(
                'head' => "條記錄", 
                'prev' => "上一頁", 
                'next' => "下一頁", 
                'first'=> "首頁", 
                'last' => "末頁"
            );                     
        //在分頁信息中顯示內容,可以自己通過set()方法設置
        private $listNum = 10;                     //默認分頁列表顯示的個數

        /**
            構造方法,可以設置分頁類的屬性
            @param    int    $total        計算分頁的總記錄數
            @param    int    $listRows    可選的,設置每頁需要顯示的記錄數,默認為25條
            @param    mixed    $query    可選的,為向目標頁面傳遞參數,可以是數組,也可以是查詢字符串格式
            @param     bool    $ord    可選的,默認值為true, 頁面從第一頁開始顯示,false則為最后一頁
         */
        public function __construct($total, $listRows=25, $query="", $ord=true){
            $this->total = $total;       //總記錄數
            $this->listRows = $listRows;
            $this->uri = $this->getUri($query);
            $this->pageNum = ceil($this->total / $this->listRows);//總頁數
            /*以下判斷用來設置當前面*/
            if(!empty($_GET["page"])) {
                $page = $_GET["page"];
            }else{
                if($ord)
                    $page = 1;
                else
                    $page = $this->pageNum;
            }

            if($total > 0) {
                if(preg_match('/\D/', $page) ){  //匹配數字(0-9)
                    $this->page = 1;
                }else{
                    $this->page = $page;
                }
            }else{
                $this->page = 0;
            }
            
            $this->limit = "LIMIT ".$this->setLimit();
        }

        /**
            用於設置顯示分頁的信息,可以進行連貫操作
            @param    string    $param    是成員屬性數組config的下標
            @param    string    $value    用於設置config下標對應的元素值
            @return    object            返回本對象自己$this, 用於連慣操作
         */
        function set($param, $value){      //將上一頁改成"<<"
            if(array_key_exists($param, $this->config)){
                $this->config[$param] = $value;
            }
            return $this;
        }
        
        /* 不是直接去調用,通過該方法,可以使用在對象外部直接獲取私有成員屬性limit和page的值 */
        function __get($args){
            if($args == "limit" || $args == "page")
                return $this->$args;
            else
                return null;
        }
        
        /**
            按指定的格式輸出分頁
            @param    int    0-7的數字分別作為參數,用於自定義輸出分頁結構和調整結構的順序,默認輸出全部結構
            @return    string    分頁信息內容
         */
        function fpage(){
            $arr = func_get_args();

            $html[0] = "&nbsp;共<b> {$this->total} </b>{$this->config["head"]}&nbsp;";
            $html[1] = "&nbsp;本頁 <b>".$this->disnum()."</b> 條&nbsp;";
            $html[2] = "&nbsp;本頁從 <b>{$this->start()}-{$this->end()}</b> 條&nbsp;";
            $html[3] = "&nbsp;<b>{$this->page}/{$this->pageNum}</b>頁&nbsp;";
            $html[4] = $this->firstprev();
            $html[5] = $this->pageList();
            $html[6] = $this->nextlast();
            $html[7] = $this->goPage();

            $fpage = '<div style="font:12px \'\5B8B\4F53\',san-serif;">';
            if(count($arr) < 1)
                $arr = array(0, 1,2,3,4,5,6,7);
                
            for($i = 0; $i < count($arr); $i++)
                $fpage .= $html[$arr[$i]];
        
            $fpage .= '</div>';
            return $fpage;
        }
        
        /* 在對象內部使用的私有方法,*/
        private function setLimit(){
            if($this->page > 0)
                return ($this->page-1)*$this->listRows.", {$this->listRows}";
            else
                return 0;
        }

        /* 在對象內部使用的私有方法,用於自動獲取訪問的當前URL */
        private function getUri($query){    
            $request_uri = $_SERVER["REQUEST_URI"];    
            $url = strstr($request_uri,'?') ? $request_uri :  $request_uri.'?';
            
            if(is_array($query))
                $url .= http_build_query($query);
            else if($query != "")
                $url .= "&".trim($query, "?&");
        
            $arr = parse_url($url);

            if(isset($arr["query"])){
                parse_str($arr["query"], $arrs);
                unset($arrs["page"]);
                $url = $arr["path"].'?'.http_build_query($arrs);
            }
            
            if(strstr($url, '?')) {
                if(substr($url, -1)!='?')
                    $url = $url.'&';
            }else{
                $url = $url.'?';
            }
            
            return $url;
        }

        /* 在對象內部使用的私有方法,用於獲取當前頁開始的記錄數 */
        private function start(){
            if($this->total == 0)
                return 0;
            else
                return ($this->page-1) * $this->listRows+1;
        }

        /* 在對象內部使用的私有方法,用於獲取當前頁結束的記錄數 */
        private function end(){
            return min($this->page * $this->listRows, $this->total);
        }

        /* 在對象內部使用的私有方法,用於獲取上一頁和首頁的操作信息 */
        private function firstprev(){
            if($this->page > 1) {
                $str = "&nbsp;<a href='{$this->uri}page=1'>{$this->config["first"]}</a>&nbsp;";
                $str .= "<a href='{$this->uri}page=".($this->page-1)."'>{$this->config["prev"]}</a>&nbsp;";        
                return $str;
            }

        }
    
        /* 在對象內部使用的私有方法,用於獲取頁數列表信息 */
        private function pageList(){
            $linkPage = "&nbsp;<b>";
            
            $inum = floor($this->listNum/2);
            /*當前頁前面的列表 */
            for($i = $inum; $i >= 1; $i--){
                $page = $this->page-$i;

                if($page >= 1)
                    $linkPage .= "<a href='{$this->uri}page={$page}'>{$page}</a>&nbsp;";
            }
            /*當前頁的信息 */
            if($this->pageNum > 1)
                $linkPage .= "<span style='padding:1px 2px;background:#BBB;color:white'>{$this->page}</span>&nbsp;";
            
            /*當前頁后面的列表 */
            for($i=1; $i <= $inum; $i++){
                $page = $this->page+$i;
                if($page <= $this->pageNum)
                    $linkPage .= "<a href='{$this->uri}page={$page}'>{$page}</a>&nbsp;";
                else
                    break;
            }
            $linkPage .= '</b>';
            return $linkPage;
        }

        /* 在對象內部使用的私有方法,獲取下一頁和尾頁的操作信息 */
        private function nextlast(){
            if($this->page != $this->pageNum) {
                $str = "&nbsp;<a href='{$this->uri}page=".($this->page+1)."'>{$this->config["next"]}</a>&nbsp;";
                $str .= "&nbsp;<a href='{$this->uri}page=".($this->pageNum)."'>{$this->config["last"]}</a>&nbsp;";
                return $str;
            }
        }

        /* 在對象內部使用的私有方法,用於顯示和處理表單跳轉頁面 */
        private function goPage(){
                if($this->pageNum > 1) {    //!important優先調用
                return '&nbsp;<input style="width:20px;height:17px !important;height:18px;border:1px solid #CCCCCC;" type="text" onkeydown="javascript:if(event.keyCode==13){var page=(this.value>'.$this->pageNum.')?'.$this->pageNum.':this.value;location=\''.$this->uri.'page=\'+page+\'\'}" value="'.$this->page.'"><input style="cursor:pointer;width:25px;height:18px;border:1px solid #CCCCCC;" type="button" value="GO" onclick="javascript:var page=(this.previousSibling.value>'.$this->pageNum.')?'.$this->pageNum.':this.previousSibling.value;location=\''.$this->uri.'page=\'+page+\'\'">&nbsp;';
            }
        }

        /* 在對象內部使用的私有方法,用於獲取本頁顯示的記錄條數 */
        private function disnum(){
            if($this->total > 0){
                return $this->end()-$this->start()+1;
            }else{
                return 0;
            }
        }
    }

?>    
    
    
page.class.php

 

使用方法:

  主要函數:__construct(數據的個數,[顯示的條數,默認25,[$query="",[$sord= true | false true代表從第一頁開始,false在最后一頁開始]]]);

      fpage();返回下面的html代碼(字符串的形式),可以輸入(1-7)來指定顯示的順序

  步驟:實例化對象-->取limit語句-->調用fpage()-->設置跳頁下腳


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM