|
有以下幾個(gè)簡(jiǎn)單的功能:
1:支持相關(guān)按鈕的顯示與否配置
2:支持每頁(yè)數(shù)目,文本名稱,html標(biāo)簽類名稱的自由配置
3:支持url重寫過(guò)的頁(yè)面(需自己在配置數(shù)組中添加重寫規(guī)則)
簡(jiǎn)單吧,還是直接上代碼:
核心代碼:pager.class.php
復(fù)制代碼 代碼如下:
<?php
class pager{
//分頁(yè)的參數(shù)配置
private $config=array(
//首頁(yè)按鈕的文本文字
"first_btn_text"=>"首頁(yè)",
//按鈕的文本文字,
"pre_btn_text"=>"",
//的文本文字
"next_btn_text"=>"",
//最后一頁(yè)的文本文字,
"last_btn_text"=>"末頁(yè)",
//總記錄數(shù) *必需
"record_count"=>0,
//每頁(yè)分頁(yè)尺寸
"pager_size"=>10,
//當(dāng)前頁(yè)碼 *必需
"pager_index"=>1,
//每頁(yè)顯示的最大數(shù)量按鈕
"max_show_page_size"=>10,
//頁(yè)碼在瀏覽器中傳值的名稱 默認(rèn)為page
"querystring_name"=>"page",
//URL是否重寫 默認(rèn)為flase
"enable_urlrewriting"=>false,
//url重寫規(guī)則 例如page/{page} 其中{page}就是代表頁(yè)數(shù)
"urlrewrite_pattern"=>"",
//分頁(yè)容器的css名稱
"classname"=>"paginator",
//當(dāng)前頁(yè)按鈕的class名稱
"current_btn_class"=>"cpb",
//分頁(yè)文字描述span標(biāo)簽的css
"span_text_class"=>"stc",
/*跳轉(zhuǎn)的詳細(xì)文本
*totle代表總頁(yè)數(shù),
*size代表每頁(yè)數(shù)目
* goto代表要跳轉(zhuǎn)的輸入框
* record代表總記錄數(shù)
* index代表當(dāng)前的頁(yè)碼
*/
"jump_info_text"=>"共{totle}頁(yè),每頁(yè){size}條記錄,跳轉(zhuǎn)到{goto}頁(yè)",
//跳轉(zhuǎn)按鈕的文本
"jump_btn_text"=>"確定",
//是否顯示跳轉(zhuǎn)
"show_jump"=>false,
//是否展示前面的按鈕 首頁(yè)&
"show_front_btn"=>true,
//是否展示后面的按鈕 &末頁(yè)
"show_last_btn"=>true
);
/*
* 類的構(gòu)造函數(shù)
* $config:該分頁(yè)類的配置
*/
public function __construct($config)
{
$this->init_config($config);
}
function __destruct()
{
unset($this->config);
}
/*
* 構(gòu)造分頁(yè)主函數(shù)
*/
public function builder_pager()
{
//分頁(yè)的字符串
$pager_arr=array();
//每頁(yè)的尺寸
$pager_size=$this->config["pager_size"];
//得到一共的分頁(yè)數(shù)目
$pager_num=$this->config["record_count"]%$pager_size==0?$this->config["record_count"]/$pager_size:floor($this->config["record_count"]/$pager_size)+1;
//當(dāng)前的頁(yè)碼序號(hào) 如果是0,則置為1
$pager_index=round($this->config["pager_index"])==0?1:round($this->config["pager_index"]);
//如果當(dāng)前的頁(yè)碼大于等于最后一頁(yè),則當(dāng)前的頁(yè)碼置為最后一頁(yè)
$pager_index=$pager_index>=$pager_num?$pager_num:$pager_index;
//的頁(yè)碼
$pager_next=$pager_index>=$pager_num?$pager_num:($pager_index+1);
//獲取需要跳轉(zhuǎn) 的url
$url=$this->get_url();
//添加開(kāi)頭的div
$classname=$this->config["classname"];
$pager_arr[]="<div class=/"$classname/">/n";
//添加前面兩個(gè)按鈕的html
if($this->config["show_front_btn"])
{
//如果當(dāng)前的頁(yè)碼為1 則front這兩個(gè)按鈕則會(huì)被禁用
$attr=$pager_index==1?"disabled=disabled":"";
$pager_arr[]=$this->get_a_html(self::format_url($url,1),$this->config["first_btn_text"],$attr);
$pager_arr[]=$this->get_a_html(self::format_url($url,$pager_index-1),$this->config["pre_btn_text"],$attr);
}
//當(dāng)前顯示頁(yè)碼的起始 1~10 1 11~20 11
$current_pager_start=$pager_index%$pager_size==0?($pager_index/$pager_size-1)*$pager_size+1:floor($pager_index/$pager_size)*$pager_size+1;
//當(dāng)前顯示頁(yè)碼的結(jié)束
$current_pager_end=($current_pager_start+$pager_size-1)>=$pager_num?$pager_num:($current_pager_start+$pager_size-1);
//添加跳轉(zhuǎn)到上一層的html
if($pager_index>$pager_size)
{
$pager_arr[]=$this->get_a_html(self::format_url($url,$current_pager_start-1),"...");
}
//主體頁(yè)碼部分
for($i=$current_pager_start;$i<=$current_pager_end;$i++)
{
if($i!=$pager_index)
{
$pager_arr[]=$this->get_a_html(self::format_url($url,$i),$i);
}else{
//如果這個(gè)是當(dāng)前頁(yè)
$pager_arr[]=$this->get_span_html($i,$this->config["current_btn_class"]);
}
}
//添加下一層的html
if($pager_index<=($pager_num-$pager_num%$pager_size))
{
$pager_arr[]=$this->get_a_html(self::format_url($url,$current_pager_end+1),"...");
}
//添加后面兩個(gè)按鈕的html
if($this->config["show_last_btn"])
{
//如果當(dāng)前的頁(yè)碼為最后一頁(yè) 則last這兩個(gè)按鈕則會(huì)被禁用
$attr=$pager_index>=$pager_num?"disabled=disabled":"";
$pager_arr[]=$this->get_a_html(self::format_url($url,$pager_next),$this->config["next_btn_text"],$attr);
$pager_arr[]=$this->get_a_html(self::format_url($url,$pager_num),$this->config["last_btn_text"],$attr);
}
//添加跳轉(zhuǎn)的html
if($this->config["show_jump"])
{
$patterns=array("http://{totle/}/","http://{size/}/","http://{goto/}/","http://{record/}/","http://{index/}/",);
$replacements=array(
$pager_num,
$pager_size,
"<input type=/"input/" id=/"jumpNum/" style=/"width:20px;/" name=/"jump/" value=/"".$pager_next."/" />/n",
$this->config["record_count"],
$this->config["pager_index"]
);
//替換特定的標(biāo)簽組成跳轉(zhuǎn)
$pager_arr[]=preg_replace($patterns,$replacements,$this->config["jump_info_text"]);
$btn_text=$this->config['jump_btn_text'];
$pager_arr[]="<a href=/"Javascript:void(0);/" style=/"float:none;/" onclick=/"Javascript:jump();/">".$this->config['jump_btn_text']."</a></span>/n";
$pager_arr[]=$this->get_jumpscript($url);
}
$pager_arr[]="</div>";
$this->config["pager_index"]=$pager_index;
return implode($pager_arr);
}
/*
*獲取需要處理的url,支持重寫配置,各種參數(shù)的url
*/
private function get_url()
{
//如果設(shè)置了允許url重寫
if($this->config["enable_urlrewriting"])
{
//得到調(diào)用文件所在的url
$file_path="http://".$_SERVER["HTTP_HOST"].$_SERVER["php_SELF"];
//得到調(diào)用url所在的網(wǎng)絡(luò)目錄
$file_path=substr($file_path,0,strripos($file_path,"/"))."/";
//直接將目錄附加重寫規(guī)則 形成新的url
$url=$file_path.$this->config["urlrewrite_pattern"];
}else{
//得到當(dāng)前調(diào)用頁(yè)面的絕對(duì)url
$url="http://".$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"];
//分頁(yè)參數(shù)在瀏覽器中傳遞的名稱
$querystring_name=$this->config['querystring_name'];
//如果該url中包含php?的字符串 則需要將分頁(yè)參數(shù)替換
if(strpos($url,"php?"))
{
//如果存在page=xxx的字樣
$pattern="/$querystring_name=[0-9]*/";
if(preg_match($pattern,$url))
{
//將含page=***的字樣中的數(shù)字替換成{0}
$url=preg_replace($pattern,"$querystring_name={page}",$url);
}else{
$url.="&$querystring_name={page}";
}
}else{
//直接附加參數(shù)形成分頁(yè)的完整url
$url.="?$querystring_name={page}";
}
}
return $url;
}
/*
* 得到a標(biāo)簽的html
*$url:a標(biāo)簽所要導(dǎo)向的html
*$title:a標(biāo)簽的標(biāo)題
**$attr:a標(biāo)簽上的附加屬性 可以不寫
*/
private static function get_a_html($url,$title,$attr="")
{
return "<a href='$url' $attr style=/"margin-right:5px;/">$title</a>/n";
}
/*
* 獲得span標(biāo)簽的html
* $num:span中的文本,即頁(yè)序號(hào)
* $classname:span標(biāo)簽的class名稱
*/
private static function get_span_html($num,$classname)
{
return "<span class=/"" .$classname. "/">$num</span>/n";
}
/*
* 格式化url
* $url 原url
* $page 頁(yè)碼
*/
private static function format_url($url,$page)
{
return preg_replace("http://{page/}$/",$page,$url);
}
/*
*初始化分頁(yè)的配置文件
*如果在參數(shù)中不含該鍵值,則默認(rèn)使用申明的值
*/
private function init_config($config)
{
//判斷該值是否存在、是否是數(shù)組、是否含有記錄
if(isset($config)&&is_array($config)&&count($config)>0){
foreach($config as $key=>$val)
{
$this->config[$key]=$val;
}
}
}
/*
* 構(gòu)造跳轉(zhuǎn)功能腳本的方法
*$url:需要跳轉(zhuǎn)的額那個(gè)url
*/
private function get_jumpscript($url)
{
$scriptstr = "<script type=/"text/Javascript/">/n".
"function jump(){/n".
"var jnum=document.getElementById(/"jumpNum/").value;/n".
"if(isNaN(jnum)){/n".
"alert(/"在跳轉(zhuǎn)框中請(qǐng)輸入數(shù)字!/");/n".
"}/n".
"else{/n".
"var re=//{page/}//n".
"location.href='$url'.replace(re,jnum);/n".
"}/n".
"}/n".
"</script>/n";
return $scriptstr;
}
/*
* php中構(gòu)造類似.NET中format方法的函數(shù)
* 用法:format("hello,{0},{1},{2}", 'x0','x1','x2')
*/
private function format() {
$args = func_get_args();
if (count($args) == 0) { return;}
if (count($args) == 1) { return $args[0]; }
$str = array_shift($args);
$str = preg_replace_callback('///{(0|[1-9]//d*)//}/', create_function('$match', '$args = '.var_export($args, true).'; return isset($args[$match[1]]) ? $args[$match[1]] : $match[0];'), $str);
return $str;
}
}
?>
直接用數(shù)組參數(shù)的方式調(diào)用
復(fù)制代碼 代碼如下:
<?php
$config1=array(
"record_count"=>703,
"pager_size"=>10,
"show_jump"=>true,
"pager_index"=>$_GET["page"]
);
$pager_simple=new pager($config1);
echo $pager_simple->builder_pager();
?>
最后來(lái)看下demo的圖片:

由于小弟最近剛剛學(xué)習(xí)php,代碼中出現(xiàn)的不規(guī)范,低效率,冗余或者設(shè)計(jì)問(wèn)題還請(qǐng)大家多多指教。
demo源碼下載
php技術(shù):仿Aspnetpager的一個(gè)PHP分頁(yè)類代碼 附源碼下載,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。