小編給大家分享一下php怎么實(shí)現(xiàn)分頁(yè)查詢,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
成都創(chuàng)新互聯(lián)公司是一家專業(yè)提供金溪企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、成都h5網(wǎng)站建設(shè)、小程序制作等業(yè)務(wù)。10年已為金溪眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站建設(shè)公司優(yōu)惠進(jìn)行中。
php分頁(yè)查詢的寫法如“select word from ufeature.spam_accuse_word_list where flag='0'”,該語(yǔ)句是一個(gè)sql查詢語(yǔ)句,可以得到查詢結(jié)果。
本文操作環(huán)境:windows7系統(tǒng)、PHP7.1版、Dell G3電腦。
php 分頁(yè)查詢?cè)趺磳懀縫hp實(shí)現(xiàn)分頁(yè)功能的3種方法
直接上代碼,希望大家仔細(xì)閱讀。
方法一:sql查詢進(jìn)行分頁(yè),需要調(diào)用幾個(gè)函數(shù),具體見腳本:
1.pager.class.php
_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; } //當(dāng)前頁(yè)數(shù) 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']); } } //總頁(yè)數(shù) public function page_num() { if($this->datanum == 0){ return 1; }else{ return ceil($this->datanum/$this->page_size); } } //數(shù)據(jù)庫(kù)查詢的偏移量 public function start() { return ($this->page_id()-1)*$this->page_size; } //數(shù)據(jù)輸出 public function sqlquery() { return $this->sql." limit ".$this->start().",".$this->page_size; } //獲取當(dāng)前文件名 private function php_self() { return $_SERVER['PHP_SELF']; } //上一頁(yè) private function pre_page() { if ($this->page_id() == 1) { //頁(yè)數(shù)等于1 return "php_self()."?page_id=1".$this->url().">上一頁(yè) "; }elseif ($this->page_id() != 1) { //頁(yè)數(shù)不等于1 return "php_self()."?page_id=".($this->page_id()-1).$this->url().">上一頁(yè) "; } } //顯示分頁(yè) private function display_page() { $display_page = ""; if($this->page_num() <= 10){ //小于10頁(yè) for ($i=1;$i<=$this->page_num();$i++) //循環(huán)顯示出頁(yè)面 $display_page .= "php_self()."?page_id=".$i.$this->url().">".$i." "; return $display_page; }elseif($this->page_num() > 10){ //大于10頁(yè) if($this->page_id() <= 6){ for ($i=1;$i<=10;$i++) //循環(huán)顯示出頁(yè)面 $display_page .= "php_self()."?page_id=".$i.$this->url().">".$i." "; 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++) //循環(huán)顯示出頁(yè)面 $display_page .= "php_self()."?page_id=".$i.$this->url().">".$i." "; 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++) //循環(huán)顯示出頁(yè)面 $display_page .= "php_self()."?page_id=".$i.$this->url().">".$i." "; return $display_page; } } } //下一頁(yè) private function next_page() { if ($this->page_id() < $this->page_num()) { //頁(yè)數(shù)小于總頁(yè)數(shù) return "php_self()."?page_id=".($this->page_id()+1).$this->url().">下一頁(yè) "; }elseif ($this->page_id() == $this->page_num()) { //頁(yè)數(shù)等于總頁(yè)數(shù) return "php_self()."?page_id=".$this->page_num().$this->url().">下一頁(yè) "; } } // 設(shè)置分頁(yè)信息 public function set_page_info() { $page_info = "共".$this->datanum."條 "; $page_info .= "php_self()."?page_id=1".$this->url().">首頁(yè) "; $page_info .= $this->pre_page(); $page_info .= $this->display_page(); $page_info .= $this->next_page(); $page_info .= "php_self()."?page_id=".$this->page_num().$this->url().">尾頁(yè) "; $page_info .= "第".$this->page_id()."/".$this->page_num()."頁(yè)"; return $page_info; } } ?>
2.腳本2:
sqlquery()); while($info = mysql_fetch_array($result,MYSQL_ASSOC)){ // while($info = mysql_fetch_array($res_1, MYSQL_ASSOC)){ echo $info["word"]."
"; } // 頁(yè)碼索引條 echo $page->set_page_info(); ?>
方法二:使用ajax的方法
1、首先了解SQL語(yǔ)句中的limit用法
SELECT * FROM table …… limit 開始位置 , 操作條數(shù) (其中開始位置是從0開始的)
例子
取前20條記錄:SELECT * FROM table …… limit 0 , 20
從第11條開始取20條記錄:SELECT * FROM table …… limit 10 , 20
LIMIT n 等價(jià)于 LIMIT 0,n。
如select * from table LIMIT 5; //返回前5行,和select * from table LIMIT 0,5一樣
2、分頁(yè)原理
所謂分頁(yè)顯示,也就是講數(shù)據(jù)庫(kù)中的結(jié)果集,一段一段顯示出來(lái)
怎么分段,當(dāng)前在第幾段 (每頁(yè)有幾條,當(dāng)前再第幾頁(yè))
前10條記錄:select * from table limit 0,10
第11至20條記錄:select * from table limit 10,10
第21至30條記錄:select * from table limit 20,10
分頁(yè)公式:
(當(dāng)前頁(yè)數(shù) - 1 )X 每頁(yè)條數(shù) , 每頁(yè)條數(shù)
Select * from table limit ($Page- 1) * $PageSize, $PageSize
3、$_SERVER["REQUEST_URI"]函數(shù)
預(yù)定義 結(jié)果為:/home.php?id=23&cid=22 4、parse_url()解析URL函數(shù) parse_url() 是講URL解析成有固定鍵值的數(shù)組的函數(shù) 例子 結(jié)果: 5、代碼實(shí)例 這個(gè)一個(gè)留言的分頁(yè),分為3個(gè)部分,一個(gè)是數(shù)據(jù)庫(kù)設(shè)計(jì),一個(gè)是連接頁(yè)面,一個(gè)是顯示頁(yè)面。 (1)設(shè)計(jì)數(shù)據(jù)庫(kù) 設(shè)計(jì)數(shù)據(jù)庫(kù)名為bbs,有一個(gè)數(shù)據(jù)表為message,里面包含title,lastdate,user,content等字段,分別表示留言標(biāo)題,留言日前,留言人,留言的內(nèi)容 (2)連接頁(yè)面 (3)顯示頁(yè)面$ua=parse_url("http://username:password@hostname/path?arg=value#anchor");
print_r($ua);
Array
(
[scheme] => http ;協(xié)議
[host] => hostname ;主機(jī)域名
[user] => username ;用戶
[pass] => password ;密碼
[path] => /path ;路徑
[query] => arg=value ;取參數(shù)
[fragment] => anchor ;
)
", str_replace(" ", " ", $content)); //兩個(gè)str_replace嵌套
return $content;
}
//$content=str_replace("'","‘",$content);
//htmlspecialchars();
?>
$pagesize){
if($pageval<=1)$pageval=1;
echo "共 $num 條".
" 上一頁(yè) 下一頁(yè)";
}
$SQL="SELECT * FROM `message` limit $page $pagesize ";
$query=mysql_query($SQL);
while($row=mysql_fetch_array($query)){
?>
標(biāo)題: | 時(shí)間: |
用戶: | |
內(nèi)容: |
方法3:
腳本2:
header("Content-Type:text/html;charset=GB2312"); $pagesize=10; //echo $_POST['page']; $result = mysql_query("Select count(DISTINCT hotelname) FROM ".TBL_HOTELS); $myrow = mysql_fetch_array($result); $numrows=$myrow[0]; $pages=intval($numrows/$pagesize); if ($numrows%$pagesize) $pages++; if (isset($_POST['page'])){ $page=intval($_POST['page']); } else{ //設(shè)置為第一頁(yè) $page=1; } $first=1; $prev=$page-1; $next=$page+1; $last=$pages; //計(jì)算記錄偏移量 $offset=$pagesize*($page - 1); //讀取指定記錄數(shù) $result=mysql_query("select `hotelname` , count( * ) from ".TBL_HOTELS." GROUP BY `hotelname` order by id desc limit $offset,$pagesize"); $num = mysql_num_rows($result); while ($row = mysql_fetch_array($result,MYSQL_NUM)) { $hotelname[] = $row[0]; $countpeople[] = $row[1]; } for($a=0;$a<$num;$a++) { //$result=mysql_query("select count(title) from " . TBL_Comments ." where `title`=\"".$title[$a]."\""); //$row = mysql_fetch_row($result); echo "
\n"; //rating_bar($title[$a],5); echo " | \n"; echo "$hotelname[$a]\n"; echo " |
\n"; echo " | \n"; echo " 推薦人數(shù):($countpeople[$a]) |\n"; echo "平均分: (".$count."票) | 評(píng)論數(shù):()\n"; echo " |
"; echo " |
以上是“php怎么實(shí)現(xiàn)分頁(yè)查詢”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!