|
在這里和大家分享一個(gè)非常好用的 Zend Framework 分頁(yè)類
具體效果可見(jiàn)本站的分頁(yè)效果, CSS樣式可根據(jù)個(gè)人設(shè)計(jì)感進(jìn)行更變。
這里我會(huì)舉例演示如何使用該類, 如下:
IndexController.php, 在 Action 中寫入如下代碼:
復(fù)制代碼 代碼如下:
protected $_curPage = 1; //默認(rèn)第一頁(yè)
const PERPAGENUM = 4; //每頁(yè)顯示條目數(shù)
public function indexAction()
{
// $this->_blogModel 已實(shí)例化 blog Model
// $rows -> 獲得到所展示數(shù)據(jù)的總條目數(shù)
$rows = $this->_blogModel->getTotalRows();
if($pageNum = $this->getRequest()->getParam('page')) {
//如果有值傳入,覆蓋初始的第一頁(yè)
$this->_curPage = $pageNum;
}
//把數(shù)據(jù)表中的數(shù)據(jù)傳到前端
$this->view->blogInfo = $this->_blogModel->getBlogInfo(
self::PERPAGENUM, ($this->_curPage-1)*self::PERPAGENUM
);
//實(shí)例化分頁(yè)類,并傳到前端
$this->view->pagebar = $this->displayPageBar($rows);
}
private function displayPageBar($totalRows)
{
$Pager = new Zend_Pagination($totalRows,self::PERPAGENUM);
return $Pager->getNavigation();
}
models/Blog.php,寫入如下代碼:
復(fù)制代碼 代碼如下:
public function getBlogInfo($perPageNum = NULL, $limit = NULL)
{
return $this->fetchAll('1 = 1', 'blog_id desc', $perPageNum, $limit)
->toArray();
}
public function getTotalRows($where = '1=1')
{
return $this->fetchAll($where)->count();
}
index.phtml, 寫入如下代碼:
復(fù)制代碼 代碼如下:
<div class="page">
<!--?php echo $this--->pagebar; ?>
</div>
到這里,就可以看見(jiàn)效果了, 如想追求更好的頁(yè)面效果, 請(qǐng)根據(jù)個(gè)人喜好修改分頁(yè)類,這里就不作詳細(xì)示例
復(fù)制代碼 代碼如下:
class Zend_Pagination
{
private $_navigationItemCount = 6; //導(dǎo)航欄顯示導(dǎo)航總頁(yè)數(shù)
private $_pageSize = null; //每頁(yè)項(xiàng)目數(shù)
private $_align = "right"; //導(dǎo)航欄顯示位置
private $_itemCount = null; //總項(xiàng)目數(shù)
private $_pageCount = null; //總頁(yè)數(shù)
private $_currentPage = null; //當(dāng)前頁(yè)
private $_front = null; //前端控制器
private $_PageParaName = "page"; //頁(yè)面參數(shù)名稱
private $_firstPageString = "|<<"; //導(dǎo)航欄中第一頁(yè)顯示的字符
private $_nextPageString = ">>"; //導(dǎo)航欄中前一頁(yè)顯示的字符
private $_previousPageString = "<<"; //導(dǎo)航欄中后一頁(yè)顯示的字符
private $_lastPageString = ">>|"; //導(dǎo)航欄中最后一頁(yè)顯示的字符
private $_splitString = " | "; //頁(yè)數(shù)字間的間隔符
public function __construct($itemCount, $pageSize)
{
if (!is_numeric($itemCount) || (!is_numeric($pageSize))) {
throw new Exception("Pagination Error:not Number");
}
$this->_itemCount = $itemCount;
$this->_pageSize = $pageSize;
$this->_front = Zend_Controller_Front::getInstance();
$this->_pageCount = ceil($itemCount/$pageSize); //總頁(yè)數(shù)
$page = $this->_front->getRequest()->getParam($this->_PageParaName);
if (empty($page) || (!is_numeric($page))) {
//為空或不是數(shù)字,設(shè)置當(dāng)前頁(yè)為1
$this->_currentPage = 1;
} else {
if ($page < 1) {
$page = 1;
}
if ($page > $this->_pageCount) {
$page = $this->_pageCount;
}
$this->_currentPage = $page;
}
}
public function getCurrentPage()
{
return $this->_currentPage;
}
public function getNavigation()
{
$navigation = '<div style="text-align:'.$this->_align.';" class="pagecss">';
//當(dāng)前頁(yè)處于第幾欄分頁(yè)
$pageCote = ceil($this->_currentPage / ($this->_navigationItemCount - 1)) - 1;
//總分頁(yè)欄
$pageCoteCount = ceil($this->_pageCount / ($this->_navigationItemCount - 1));
//分頁(yè)欄中起始頁(yè)
$pageStart = $pageCote * ($this->_navigationItemCount -1) + 1;
//分頁(yè)欄中終止頁(yè)
$pageEnd = $pageStart + $this->_navigationItemCount - 1;
if($this->_pageCount < $pageEnd) {
$pageEnd = $this->_pageCount;
}
$navigation .= "總共: {$this->_itemCount} 條 共 {$this->_pageCount} 頁(yè)/n ";
if($pageCote > 0) { //首頁(yè)導(dǎo)航
$navigation .= '<a href="'.$this->createHref(1)
." /"="">$this->_firstPageString</a> ";
}
if($this->_currentPage != 1) { //導(dǎo)航
$navigation .= '<a href="'.$this->createHref($this->_currentPage-1);
$navigation .= " /"="">$this->_previousPageString</a> ";
}else{
$navigation .= $this->_previousPageString . ' ';
}
while ($pageStart <= $pageEnd) //構(gòu)造數(shù)字導(dǎo)航區(qū)
{
if ($pageStart == $this->_currentPage) {
$navigation .= "<b>$pageStart</b>" . $this->_splitString;
} else {
$navigation .= '<a href="'.$this->createHref($pageStart)
." /"="">$pageStart</a>"
. $this->_splitString;
}
$pageStart++;
}
if($this->_currentPage != $this->_pageCount) { //導(dǎo)航
$navigation .= ' <a href="'
. $this->createHref($this->_currentPage+1)
. " /"="">$this->_nextPageString</a> ";
}else{
$navigation .= $this->_nextPageString;
}
if ($pageCote < $pageCoteCount-1) { //未頁(yè)導(dǎo)航
$navigation .= '<a href="'
. $this->createHref($this->_pageCount)
. " /"="">$this->_lastPageString</a> ";
}
$navigation .= ' 到 <select onchange="window.location=/' '
. $this->createHref()
. '/'+this.options[this.selectedIndex].value;">';
for ($i=1;$i<=$this->_pageCount;$i++){
if ($this->getCurrentPage()==$i){
$selected = "selected";
} else {
$selected = "";
}
$navigation .= '<option value=" . $i . " '="" .="" $selected="">'
. $i
. '</option>';
}
$navigation .= '</select>';
$navigation .= " 頁(yè)</div>";
return $navigation;
}
public function getNavigationItemCount()
{
return $this->_navigationItemCount;
}
public function setNavigationItemCoun($navigationCount)
{
if(is_numeric($navigationCount)) {
$this->_navigationItemCount = $navigationCount;
}
}
public function setFirstPageString($firstPageString)
{
$this->_firstPageString = $firstPageString;
}
public function setPreviousPageString($previousPageString)
{
$this->_previousPageString = $previousPageString;
}
public function setNextPageString($nextPageString)
{
$this->_nextPageString = $nextPageString;
}
public function setLastPageString($lastPageString)
{
$this->_lastPageString = $lastPageString;
}
public function setAlign($align)
{
$align = strtolower($align);
if ($align == "center") {
$this->_align = "center";
} elseif ($align == "right") {
$this->_align = "right";
} else {
$this->_align = "left";
}
}
public function setPageParamName($pageParamName)
{
$this->_PageParaName = $pageParamName;
}
public function getPageParamName()
{
return $this->_PageParaName;
}
private function createHref($targetPage = null)
{
$params = $this->_front->getRequest()->getParams();
$module = $params["module"];
$controller = $params["controller"];
$action = $params["action"];
$targetUrl = $this->_front->getBaseUrl()
. "/$module/$controller/$action";
foreach ($params as $key => $value)
{
if($key != "controller" && $key != "module"
&& $key != "action" && $key != $this->_PageParaName) {
$targetUrl .= "/$key/$value";
}
}
if (isset($targetPage)) { //指定目標(biāo)頁(yè)
$targetUrl .= "/$this->_PageParaName/$targetPage";
} else {
$targetUrl .= "/$this->_PageParaName/";
}
return $targetUrl;
}
}
這里再簡(jiǎn)單回顧下 Mysql 中的 limit offset
假設(shè)數(shù)據(jù)庫(kù)表 blog 存在 13 條數(shù)據(jù)。
語(yǔ)句1:select * from blog limit 9, 4
語(yǔ)句2:select * from blog limit 4 offset 9
//語(yǔ)句1和2均返回表 blog 的第 10、11、12、13 行
//語(yǔ)句1中的 9 表示從表的第十行開(kāi)始, 返回 4 行
//語(yǔ)句2中的 4 表示返回 4 行,offset 9 表示從表的第十行開(kāi)始
如下語(yǔ)句顯示分頁(yè)效果:
語(yǔ)句3:select * from blog limit ($this->_curPage - 1)* self::PERPAGENUM, self::PERPAGENUM;
語(yǔ)句4:select * from blog limit self::PERPAGENUM offset ($this->_curPage - 1) * self::PERPAGENUM;
php技術(shù):非常好用的Zend Framework分頁(yè)類,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。