相信很多小伙伴對于在編程學(xué)習(xí)的時(shí)候提及有關(guān)于 PHP 這門語言的時(shí)候并不會(huì)陌生,因?yàn)樗氖褂矛F(xiàn)在也是比較廣泛的,那么今天我們說說在 PHP 中“如何實(shí)現(xiàn)分頁?”這個(gè)問題,下面是有關(guān)于這個(gè)問題的相關(guān)解答內(nèi)容,希望對大家有所幫助!
對于我們談及的 "PHP 如何實(shí)現(xiàn)分頁?"的這個(gè)問題,其實(shí)在 PHP 中擁有三種實(shí)現(xiàn)分頁的方法分別是這三種:
方法一:通過sql查詢進(jìn)行分頁。在使用這個(gè)方法的時(shí)候我們需要使用到這些內(nèi)容,先看我們的代碼:
1、pager.class.php文件代碼
<?php
class pager {
public $sql; //SQL查詢語句
public $datanum; //查詢所有的數(shù)據(jù)總記錄數(shù)
public $page_size; //每頁顯示記錄的條數(shù)
protected $_errstr;
protected $_conn;
protected $_query_id;
public function query($query)///這個(gè)函數(shù)有問題,暫時(shí)可以不用
{
$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;
}
//當(dāng)前頁數(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']);
}
}
//總頁數(shù)
public function page_num() {
if($this->datanum == 0){
return 1;
}else{
return ceil($this->datanum/$this->page_size);
}
}
//數(shù)據(jù)庫查詢的偏移量
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'];
}
//上一頁
private function pre_page() {
if ($this->page_id() == 1) { //頁數(shù)等于1
return "<a href=".$this->php_self()."?page_id=1".$this->url().">上一頁</a> ";
}elseif ($this->page_id() != 1) { //頁數(shù)不等于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++) //循環(huán)顯示出頁面
$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++) //循環(huán)顯示出頁面
$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++) //循環(huán)顯示出頁面
$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++) //循環(huán)顯示出頁面
$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()) { //頁數(shù)小于總頁數(shù)
return "<a href=".$this->php_self()."?page_id=".($this->page_id()+1).$this->url().">下一頁</a> ";
}elseif ($this->page_id() == $this->page_num()) { //頁數(shù)等于總頁數(shù)
return "<a href=".$this->php_self()."?page_id=".$this->page_num().$this->url().">下一頁</a> ";
}
}
// 設(shè)置分頁信息
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、腳步部分代碼
<?php
//類的用法
// 讀取分頁類
include("pager.class.php");
// 數(shù)據(jù)庫連接初始化
// $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);
// 這是一個(gè)sql查詢語句,并得到查詢結(jié)果
$sql = "select word from ufeature.spam_accuse_word_list where flag='0'";
// 分頁初始化
$page = new pager($sql,20);
// 20是每頁顯示的數(shù)量
// $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();
?>
通過上面這些代碼我們就可以大概的完成這個(gè)方法的分頁效果。
方法二:使用Ajax
1、了解SQL語法中的limit用法,代碼如下所示:
SELECT * FROM table …… limit 開始位置 , 操作條數(shù) (其中開始位置是從0開始的)
我們來看看下面這個(gè)例子:
首先提取前20條記錄,代碼如下所示:
SELECT * FROM table …… limit 0 , 20
從11條開始取出20條記錄,代碼如下所示:
SELECT * FROM table …… limit 10 , 20
在SQL語句中的LIMIT n 和LIMIT 0,n 的意思是一樣的我們來看看下面這個(gè)代碼:
如select * from table LIMIT 5; //返回前5行,和 select * from table LIMIT 0,5一樣
通過上面這些代碼我們對SQL中的 limit 就有所了解了。
2、分頁原理
我們之所以進(jìn)行分頁顯示,就是為了將收集的數(shù)據(jù)進(jìn)行一部分一部分的顯示出來,不會(huì)看起來那么雜亂。那么對于怎么進(jìn)行分段我們可以參考下面這個(gè)代碼:
前10條記錄:?select * from table limit 0,10
?;第11至20條記錄:?select * from table limit 10,20
?;第21至30條記錄:?select * from table limit 20,30
?。
那么我們的分頁公式的話就是這么寫:
(當(dāng)前頁數(shù) - 1 )X 每頁條數(shù) , 每頁條數(shù),代碼如下所示:
elect * from table limit ($Page- 1) * $PageSize, $PageSize
3、$_SERVER["REQUEST_URI"] 函數(shù)
我們通過預(yù)定義我們服務(wù)器變量的一種方法來進(jìn)行,而且所有的? $_SERVER
?開頭的都叫做預(yù)定于服務(wù)器變量。在 ?REQUEST_URI
?中起到的作用是取得當(dāng)前 ?URI
?,也就除域名外后面的完整的地址路徑。我們來看下下面這個(gè)案例:
假設(shè)當(dāng)前頁為:?http://www.test.com/home.php?id=23&cid=22
? 我們輸入下面這串代碼:
echo $_SERVER["REQUEST_URI"]
結(jié)果就會(huì)變成:?/home.php?id=23&cid=22
?。
4、parse_url()解析URL函數(shù)
對于 parse_url() 這屬性來說是用來將 URL 解析成有固定鍵值的數(shù)組函數(shù),我們來看下面這個(gè)例子:
$ua=parse_url("http://username:password@hostname/path?arg=value#anchor");
print_r($ua);
結(jié)果如下所示:
Array
(
[scheme] => http ;協(xié)議
[host] => hostname ;主機(jī)域名
[user] => username ;用戶
[pass] => password ;密碼
[path] => /path ;路徑
[query] => arg=value ;取參數(shù)
[fragment] => anchor ;
)
5、代碼實(shí)例
我們來看這個(gè)實(shí)例,我們將一個(gè)留言分頁,在這個(gè)實(shí)現(xiàn)中我們的代碼需要分為 數(shù)據(jù)庫設(shè)計(jì)、連接頁面和頁面顯示這三部分。
(1)、數(shù)據(jù)庫設(shè)計(jì)
我們將需要的數(shù)據(jù)庫設(shè)計(jì)庫名為 ?bbs
?,在設(shè)計(jì)一個(gè)數(shù)據(jù)表讓它的表名為 ?message
?,而且這張表里面包含 ?title
?,?lastdate
?,?user
?,?content
?等字段,分別表示留言標(biāo)題,留言日前,留言人,留言的內(nèi)容。
(2)、連接頁面
我們來看下我們連接頁面的代碼,如下所示:
<?php
$conn = @ mysql_connect("localhost", "root", "123456") or die("數(shù)據(jù)庫鏈接錯(cuò)誤");
mysql_select_db("bbs", $conn);
mysql_query("set names 'GBK'"); //使用GBK中文編碼;
//將空格,換行轉(zhuǎn)換為HTML可解析
function htmtocode($content) {
$content = str_replace("\\n", "<br>", str_replace(" ", " ", $content)); //兩個(gè)str_replace嵌套
return $content;
}
//$content=str_replace("'","‘",$content);
//htmlspecialchars();
?>
(3)、顯示頁面
顯示頁面代碼如下所示:
<?php
include("conn.php");
$pagesize=2; //設(shè)置每頁顯示2個(gè)記錄
$url=$_SERVER["REQUEST_URI"];
$url=parse_url($url);
$url=$url[path];
$numq=mysql_query("SELECT * FROM `message`");
$num = mysql_num_rows($numq);
if($_GET){
$pageval=$_GET;
$page=($pageval-1)*$pagesize;
$page.=',';
}
if($num > $pagesize){
if($pageval<=1)$pageval=1;
echo "共 $num 條".
" <a href=$url?page=".($pageval-1).">上一頁</a> <a href=$url?page=".($pageval+1).">下一頁</a>";
}
$SQL="SELECT * FROM `message` limit $page $pagesize ";
$query=mysql_query($SQL);
while($row=mysql_fetch_array($query)){
?>
<table width=500 border="0" cellpadding="5" cellspacing="1" bgcolor="#add3ef">
<tr bgcolor="#eff3ff">
<td>標(biāo)題:<?php echo $row[title]?></td> <td>時(shí)間:<?php echo $row[lastdate]?></td>
</tr>
<tr bgcolor="#eff3ff">
<td> 用戶:<?php echo $row[user]?></td><td></td>
</tr>
<tr>
<td>內(nèi)容:<?php echo htmtocode($row[content]);?></td>
</tr>
<br>
</table>
<?php
}
?>
上面這個(gè)就是我們使用 Ajax 方法實(shí)現(xiàn)分頁的內(nèi)容。
方法三:
我們直接來看函數(shù)頁面的代碼部分:
<script>
function viewpage(p){
if(window.XMLHttpRequest){
var xmlReq = new XMLHttpRequest();
} else if(window.ActiveXObject) {
var xmlReq = new ActiveXObject('Microsoft.XMLHTTP');
}
var formData = "page="+p;
xmlReq.onreadystatechange = function(){
if(xmlReq.readyState == 4){
document.getElementByIdx_x('content2').innerHTML = xmlReq.responseText;
}
}
xmlReq.open("post", "hotel_list.php", true);
xmlReq.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xmlReq.send(formData);
return false;
}
</script>
腳步代碼:
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è)置為第一頁
$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 "<TABLE style=\\"MARGIN-BOTTOM: 20px\\" cellSpacing=0 cellPadding=0 width=100% border=0>\\n";
echo "<TBODY>\\n";
echo "<TR>\\n";
echo "<TD style=\\"PADDING-TOP: 5px\\" vAlign=top align=left width=80>\\n";
//rating_bar($title[$a],5);
echo "</TD>\\n";
echo "<TD style=\\"PADDING-TOP: 5px\\" align=left width=100%><A title=$hotelname[$a] style=\\"FONT-SIZE: 14px\\" href=#>$hotelname[$a]</A>\\n";
echo "</TD></TR>\\n";
echo " <TR>\\n";
echo "<TD></TD>\\n";
echo "<TD style=\\"PADDING-LEFT: 0px\\">\\n";
echo "<IMG src=\\"images/comment.gif\\" border=0> 推薦人數(shù):($countpeople[$a]) |\\n";
echo "<SPAN>平均分:<STRONG></STRONG> (".$count."票) | 評論數(shù):()</SPAN>\\n";
echo "</TD></TR></TBODY></TABLE>\\n";
}
echo "<TABLE style=\\"MARGIN-TOP: 30px\\" cellSpacing=0 cellPadding=0 width=\\"100%\\"";
echo "border=0>";
echo "<TBODY><TR><TD colSpan=3 height=20>";
echo "<DIV align=center>";
echo "<P align=left><FONT color=red>第".$page."頁/總".$pages."頁 | 總".$numrows."條</FONT> | ";
if ($page>1) echo "<a onclick=\\"viewpage(".$first.")\\" href='#'>首頁</a> | ";
if ($page>1) echo "<a onclick=\\"viewpage(".$prev.")\\" href='#'>上頁</a> | ";
if ($page<$pages) echo "<a onclick=\\"viewpage(".$next.")\\" href='#'>下頁</a> | ";
if ($page<$pages) echo "<a onclick=\\"viewpage(".$last.")\\" href='#'>尾頁</a>";
echo "轉(zhuǎn)到第 <INPUT maxLength=3 size=3 value=1 name=goto_page> 頁 <INPUT hideFocus onclick=\\"viewpage(document.all.goto_page.value)\\" type=button value=Go name=cmd_goto>";
echo "</P></DIV></TD></TR></TBODY></TABLE>";
就這樣我們就完成了一個(gè)分頁的實(shí)現(xiàn)效果。
總結(jié):
對于在 “PHP 中怎么實(shí)現(xiàn)分頁?”這個(gè)問題,以上就是相關(guān)的內(nèi)容,當(dāng)然如果你有更好的方案也可以分享出來和大家一同探討,更多有關(guān)于 PHP 這方面的相關(guān)內(nèi)容我們都可以在W3Cschool中進(jìn)行學(xué)習(xí)和了解。