最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

php google或baidu分頁代碼

 更新時間:2009年11月26日 17:50:19   作者:  
php實現(xiàn)google與baidu的分頁代碼,需要的朋友可以參考下。

復(fù)制代碼 代碼如下:

<?php
/**

作者:瀟湘博客

時間:
2009-11-26

php技術(shù)群:
37304662

使用方法:
include_once'Pager.class.php';
$pager=new Pager();
if(isset($_GET['page']))
$pager->setCurrentPage($_GET['page']);
else
$pager->setCurrentPage(1);

$pager->setRecorbTotal(1000);
$pager->setBaseUri("page.php?");
echo $pager->execute();

**/
class Pager{
/**
*int總頁數(shù)
**/
protected $pageTotal;
/**
*int上一頁
**/
protected $previous;
/**
*int下一頁
**/
protected $next;
/**
*int中間頁起始序號
**/
protected $startPage;
/**
*int中間頁終止序號
**/
protected $endPage;
/**
*int記錄總數(shù)
**/
protected $recorbTotal;
/**
*int每頁顯示記錄數(shù)
**/
protected $pageSize;
/**
*int當(dāng)前顯示頁
**/
protected $currentPage;
/**
*string基url地址
**/
protected $baseUri;

/**
*@returnstring獲取基url地址
*/
public function getBaseUri(){
return$this->baseUri;
}

/**
*@returnint獲取當(dāng)前顯示頁
*/
public function getCurrentPage(){
return $this->currentPage;
}

/**
*@returnint獲取每頁顯示記錄數(shù)
*/
public function getPageSize(){
return $this->pageSize;
}

/**
*@returnint獲取記錄總數(shù)
*/
public function getRecorbTotal(){
return$this->recorbTotal;
}

/**
*@paramstring$baseUri設(shè)置基url地址
*/
public function setBaseUri($baseUri){
$this->baseUri=$baseUri;
}

/**
*@paramint$currentPage設(shè)置當(dāng)前顯示頁
*/
public function setCurrentPage($currentPage){
$this->currentPage=$currentPage;
}

/**
*@paramint$pageSize設(shè)置每頁顯示記錄數(shù)
*/
public function setPageSize($pageSize){
$this->pageSize=$pageSize;
}

/**
*@paramint$recorbTotal設(shè)置獲取記錄總數(shù)
*/
public function setRecorbTotal($recorbTotal){
$this->recorbTotal=$recorbTotal;
}

/**
*構(gòu)造函數(shù)
**/
public function __construct()
{
$this->pageTotal=0;
$this->previous=0;
$this->next=0;
$this->startPage=0;
$this->endPage=0;

$this->pageSize=20;
$this->currentPage=0;
}

/**
*分頁算法
**/
private function arithmetic(){
if($this->currentPage<1)
$this->currentPage=1;

$this->pageTotal=floor($this->recorbTotal/$this->pageSize)+($this->recorbTotal%$this->pageSize>0?1:0);

if($this->currentPage>1&&$this->currentPage>$this->pageTotal)
header('location:'.$this->baseUri.'page='.$this->pageTotal);

$this->next=$this->currentPage+1;
$this->previous=$this->currentPage-1;

$this->startPage=($this->currentPage+5)>$this->pageTotal?$this->pageTotal-10:$this->currentPage-5;
$this->endPage=$this->currentPage<5?11:$this->currentPage+5;

if($this->startPage<1)
$this->startPage=1;

if($this->pageTotal<$this->endPage)
$this->endPage=$this->pageTotal;
}

/**
*分頁樣式
**/


protected function pageStyle(){
$result="共".$this->pageTotal."頁";

if($this->currentPage>1)
$result.="<a href=\"".$this->baseUri."page=1\"><font style=\"font-family:webdings\">第1頁</font></a> <a href=\"".$this->baseUri."page=$this->previous\"><fontstyle=\"font-family:webdings\">前一頁</font></a>";
else
$result.="<font style=\"font-family:webdings\">第1頁</font> <font style=\"font-family:webdings\"></font>";

for($i=$this->startPage;$i<=$this->endPage;$i++){
if($this->currentPage==$i)
$result.="<font color=\"#ff0000\">$i</font>";
else
$result.=" <a href=\"".$this->baseUri."page=$i\">$i</a> ";
}

if($this->currentPage!=$this->pageTotal){
$result.="<a href=\"".$this->baseUri."page=$this->next\"><font style=\"font-family:webdings\">后一頁</font></a> ";
$result.="<a href=\"".$this->baseUri."page=$this->pageTotal\"><font style=\"font-family:webdings\">最后1頁</font></a>";
}else{
$result.="<font style=\"font-family:webdings\">最后1頁</font> <font style=\"font-family:webdings\"></font>";
}
return $result;
}



/**
*執(zhí)行分頁
**/
public function execute(){
if($this->baseUri!=""&&$this->recorbTotal==0)
return"";
$this->arithmetic();
return $this->pageStyle();
}
}
?>

相關(guān)文章

最新評論

石家庄市| 焦作市| 保康县| 涡阳县| 镇平县| 崇州市| 大理市| 宝山区| 铅山县| 分宜县| 奉节县| 鹤山市| 咸丰县| 繁昌县| 兰溪市| 洪泽县| 孟连| 礼泉县| 新竹县| 望谟县| 永靖县| 龙州县| 阳谷县| 铁岭县| 申扎县| 漳州市| 迁西县| 饶平县| 调兵山市| 祁连县| 嘉禾县| 鄂托克前旗| 句容市| 定日县| 同江市| 汕尾市| 沾益县| 闸北区| 青川县| 乌鲁木齐县| 盐津县|