php實現分頁功能的3種方法第1/3頁_php技巧

來源:互聯網
上載者:User

直接上代碼,希望大家仔細閱讀。

方法一:講sql查詢進行分頁進行,需要調用幾個函數,具體見指令碼:
1.pager.class.php

<?php    class pager {    public $sql; //SQL查詢語句    public $datanum; //查詢所有的資料總記錄數    public $page_size; //每頁顯示記錄的條數    protected $_errstr;    protected $_conn;    protected $_query_id;    public function query($query)///這個函數有問題,暫時可以不用    {    $ret = false;    if (!empty($query)) {      if ($this->_conn === false || !is_resource($this->_conn)) {       warningLog(__METHOD__ . ': query sql with no connection', true);      return false;      }    $this->_query_id = @mysql_query($query, $this->_conn);    if ($this->_query_id === false) {    $this->_errstr = @mysql_error();    $ret = false;     } else {    $this->_errstr = 'SUCCESS';    $ret = $this->_query_id;      }    }     $msg = ($ret === false) ? 'false' : strval($ret);     debugLog(__METHOD__.": [$msg] returned for sql query [$query]");    return $ret;    }function __construct($sql,$page_size) {      $result = mysql_query($sql);      $datanum = mysql_num_rows($result);      $this->sql=$sql;      $this->datanum=$datanum;      $this->page_size=$page_size;    }    //當前頁數    public function page_id() {      if($_SERVER['QUERY_STRING'] == ""){        return 1;      }elseif(substr_count($_SERVER['QUERY_STRING'],"page_id=") == 0){        return 1;      }else{        return intval(substr($_SERVER['QUERY_STRING'],8));      }    }    //剩餘url值    public function url() {      if($_SERVER['QUERY_STRING'] == ""){        return "";      }elseif(substr_count($_SERVER['QUERY_STRING'],"page_id=") == 0){        return "&".$_SERVER['QUERY_STRING'];      }else{        return str_replace("page_id=".$this->page_id(),"",$_SERVER['QUERY_STRING']);      }    }    //總頁數    public function page_num() {      if($this->datanum == 0){        return 1;      }else{        return ceil($this->datanum/$this->page_size);      }    }//資料庫查詢的位移量    public function start() {      return ($this->page_id()-1)*$this->page_size;    }    //資料輸出    public function sqlquery() {      return $this->sql." limit ".$this->start().",".$this->page_size;    }    //擷取當前檔案名稱    private function php_self() {      return $_SERVER['PHP_SELF'];    }    //上一頁    private function pre_page() {      if ($this->page_id() == 1) { //頁數等於1        return "<a href=".$this->php_self()."?page_id=1".$this->url().">上一頁</a> ";      }elseif ($this->page_id() != 1) { //頁數不等於1        return "<a href=".$this->php_self()."?page_id=".($this->page_id()-1).$this->url().">上一頁</a> ";      }    }    //顯示分頁    private function display_page() {      $display_page = "";      if($this->page_num() <= 10){ //小於10頁        for ($i=1;$i<=$this->page_num();$i++) //迴圈顯示出頁面          $display_page .= "<a href=".$this->php_self()."?page_id=".$i.$this->url().">".$i."</a> ";          return $display_page;      }elseif($this->page_num() > 10){ //大於10頁        if($this->page_id() <= 6){          for ($i=1;$i<=10;$i++) //迴圈顯示出頁面            $display_page .= "<a href=".$this->php_self()."?page_id=".$i.$this->url().">".$i."</a> ";            return $display_page;        }elseif(($this->page_id() > 6) && ($this->page_num()-$this->page_id() >= 4)){          for ($i=$this->page_id()-5;$i<=$this->page_id()+4;$i++) //迴圈顯示出頁面            $display_page .= "<a href=".$this->php_self()."?page_id=".$i.$this->url().">".$i."</a> "; return $display_page;        }elseif(($this->page_id() > 6) && ($this->page_num()-$this->page_id() < 4)){          for ($i=$this->page_num()-9;$i<=$this->page_num();$i++) //迴圈顯示出頁面            $display_page .= "<a href=".$this->php_self()."?page_id=".$i.$this->url().">".$i."</a> ";            return $display_page;        }      }    }    //下一頁    private function next_page() {      if ($this->page_id() < $this->page_num()) { //頁數小於總頁數        return "<a href=".$this->php_self()."?page_id=".($this->page_id()+1).$this->url().">下一頁</a> ";      }elseif ($this->page_id() == $this->page_num()) { //頁數等於總頁數        return "<a href=".$this->php_self()."?page_id=".$this->page_num().$this->url().">下一頁</a> ";      }    }    // 設定分頁資訊    public function set_page_info() {      $page_info = "共".$this->datanum."條 ";      $page_info .= "<a href=".$this->php_self()."?page_id=1".$this->url().">首頁</a> ";      $page_info .= $this->pre_page();      $page_info .= $this->display_page();      $page_info .= $this->next_page();      $page_info .= "<a href=".$this->php_self()."?page_id=".$this->page_num().$this->url().">尾頁</a> ";      $page_info .= "第".$this->page_id()."/".$this->page_num()."頁";      return $page_info;    }  }?>

2.指令碼2:

<?php  //類的用法  // 讀取分頁類  include("pager.class.php");  // 資料庫連接初始化//  $db = new mysql();  $impeach_host = '10.81.43.139';  $impeach_usr = 'vmtest15';  $impeach_passwd = 'vmtest15';  $impeach_name = 'ufeature';  $impeach_con = mysql_connect($impeach_host, $impeach_usr, $impeach_passwd) or    die("Can't connect ".mysql_error());  mysql_select_db($impeach_name, $impeach_con);  // 這是一個sql查詢語句,並得到查詢結果  $sql = "select word from ufeature.spam_accuse_word_list where flag='0'";  // 分頁初始化  $page = new pager($sql,20);  // 20是每頁顯示的數量  // $res_1 = mysql_query($sql) or  //    die("Can't get result ".mysql_error());   $result=mysql_query($page->sqlquery());while($info = mysql_fetch_array($result,MYSQL_ASSOC)){  // while($info = mysql_fetch_array($res_1, MYSQL_ASSOC)){  echo $info["word"]."<br/>";  }  // 頁碼索引條  echo $page->set_page_info();?>

方法二:使用ajax的方法
1、首先瞭解SQL語句中的limit用法

SELECT * FROM table …… limit 開始位置 , 操作條數 (其中開始位置是從0開始的)

例子
取前20條記錄:SELECT * FROM table …… limit   0 , 20
從第11條開始取20條記錄:SELECT * FROM table …… limit   10 , 20 
LIMIT n 等價於 LIMIT 0,n。
select * from table LIMIT 5; //返回前5行, select * from table LIMIT 0,5一樣 
2、分頁原理

 所謂分頁顯示,也就是講資料庫中的結果集,一段一段顯示出來
怎麼分段,當前在第幾段 (每頁有幾條,當前再第幾頁)
前10條記錄:select * from table limit 0,10
第11至20條記錄:select * from table limit 10,10
第21至30條記錄:select * from table limit 20,10
分頁公式:
(當前頁數 - 1 )X 每頁條數 , 每頁條數

Select * from table limit ($Page- 1) * $PageSize, $PageSize 

3、$_SERVER["REQUEST_URI"]函數
預定義伺服器變數的一種,所有$_SERVER開頭的都叫做預定於伺服器變數。
REQUEST_URI的作用是取得當前URI,也就除網域名稱外後面的完整的地址路徑。
例子:
當前頁為:http://www.test.com/home.php?id=23&cid=22
echo $_SERVER["REQUEST_URI"]
結果為:/home.php?id=23&cid=22 
4、parse_url()解析URL函數
 parse_url() 是講URL解析成有固定索引值的數組的函數 
例子

$ua=parse_url("http://username:password@hostname/path?arg=value#anchor");print_r($ua);

結果:

Array( [scheme] => http  ;協議 [host] => hostname  ;主機網域名稱 [user] => username  ;使用者 [pass] => password  ;密碼 [path] => /path   ;路徑 [query] => arg=value  ;取參數 [fragment] => anchor  ;)
 

5、代碼執行個體
 這個一個留言的分頁,分為3個部分,一個是資料庫設計,一個是串連頁面,一個是顯示頁面。
(1)設計資料庫
 設計資料庫名為bbs,有一個資料表為message,裡麵包含title,lastdate,user,content等欄位,分別表示留言標題,留言日前,留言人,留言的內容
(2)串連頁面

<?php$conn = @ mysql_connect("localhost", "root", "123456") or die("資料庫連結錯誤");mysql_select_db("bbs", $conn);mysql_query("set names 'GBK'"); //使用GBK中文編碼;//將空格,換行轉換為HTML可解析function htmtocode($content) { $content = str_replace("\n", "<br>", str_replace(" ", " ", $content)); //兩個str_replace嵌套 return $content;}//$content=str_replace("'","‘",$content); //htmlspecialchars(); ?>

(3)顯示頁面

<?php include("conn.php");$pagesize=2; //設定每頁顯示2個記錄$url=$_SERVER["REQUEST_URI"]; $url=parse_url($url);$url=$url[path];$numq=mysql_query("SELECT * FROM `message`");$num = mysql_num_rows($numq);if($_GET
  
當前1/3頁  123下一頁閱讀全文
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.