当前位置:  编程技术>php

非常好用的Zend Framework分页类

    来源: 互联网  发布时间:2014-08-26

    本文导语:  在这里和大家分享一个非常好用的 Zend Framework 分页类   具体效果可见本站的分页效果, CSS样式可根据个人设计感进行更变。   这里我会举例演示如何使用该类, 如下:   IndexController.php, 在 Action 中写入如下代码: 代码如...

在这里和大家分享一个非常好用的 Zend Framework 分页类
 
具体效果可见本站的分页效果, CSS样式可根据个人设计感进行更变。
 

这里我会举例演示如何使用该类, 如下:
 
IndexController.php, 在 Action 中写入如下代码:

代码如下:

protected  $_curPage = 1;      //默认第一页
const PERPAGENUM     = 4;      //每页显示条目数
 
public function indexAction()
{  
    // $this->_blogModel 已实例化 blog Model
    // $rows -> 获得到所展示数据的总条目数
    $rows = $this->_blogModel->getTotalRows();
     
    if($pageNum = $this->getRequest()->getParam('page')) {
        //如果有值传入,覆盖初始的第一页
        $this->_curPage = $pageNum;
    }
     
    //把数据表中的数据传到前端
    $this->view->blogInfo = $this->_blogModel->getBlogInfo(
                                self::PERPAGENUM, ($this->_curPage-1)*self::PERPAGENUM
                            );
    //实例化分页类,并传到前端
    $this->view->pagebar = $this->displayPageBar($rows);
}
 
private function displayPageBar($totalRows)
{
    $Pager = new Zend_Pagination($totalRows,self::PERPAGENUM);
    return $Pager->getNavigation();
}

models/Blog.php,写入如下代码:

代码如下:

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, 写入如下代码:

代码如下:


    pagebar; ?>

到这里,就可以看见效果了, 如想追求更好的页面效果, 请根据个人喜好修改分页类,这里就不作详细示例

代码如下:

class Zend_Pagination
{
    private $_navigationItemCount = 6;        //导航栏显示导航总页数
    private $_pageSize            = null;     //每页项目数
    private $_align               = "right";  //导航栏显示位置
    private $_itemCount           = null;     //总项目数
    private $_pageCount           = null;     //总页数
    private $_currentPage         = null;     //当前页
    private $_front               = null;     //前端控制器
    private $_PageParaName        = "page";   //页面参数名称
 
    private $_firstPageString     = "|>";     //导航栏中前一页显示的字符
    private $_previousPageString  = ">|";    //导航栏中最后一页显示的字符
    private $_splitString         = " | ";    //页数字间的间隔符
 
    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);   //总页数
        $page = $this->_front->getRequest()->getParam($this->_PageParaName);
         
        if (empty($page) || (!is_numeric($page))) {  
            //为空或不是数字,设置当前页为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 = '
';
         
        //当前页处于第几栏分页
        $pageCote      = ceil($this->_currentPage / ($this->_navigationItemCount - 1)) - 1;  
        //总分页栏
        $pageCoteCount = ceil($this->_pageCount / ($this->_navigationItemCount - 1));
        //分页栏中起始页
        $pageStart     = $pageCote * ($this->_navigationItemCount -1) + 1; 
        //分页栏中终止页      
        $pageEnd       = $pageStart + $this->_navigationItemCount - 1;                      
         
        if($this->_pageCount < $pageEnd) {
            $pageEnd   = $this->_pageCount;
        }
         
        $navigation .= "总共: {$this->_itemCount} 条 共 {$this->_pageCount} 页n  ";
         
        if($pageCote > 0) {           //首页导航
            $navigation .= '_currentPage != 1) {       //上一页导航
            $navigation .= '
_previousPageString . ' ';
        }
        
        while ($pageStart _currentPage) {
                $navigation .= "$pageStart" . $this->_splitString;
            } else {
                $navigation .= '
_splitString;
            }
            $pageStart++;
        }
         
        if($this->_currentPage != $this->_pageCount) {   //下一页导航
            $navigation .= '
_nextPageString;
        }
        
        if ($pageCote < $pageCoteCount-1) {               //未页导航
            $navigation .= '
getCurrentPage()==$i){
               $selected = "selected";
            } else {
               $selected = "";
            }
            $navigation .= '_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)) {                //指定目标页
            $targetUrl .= "/$this->_PageParaName/$targetPage";
        } else {
            $targetUrl .= "/$this->_PageParaName/";
        }
        return $targetUrl;
    }
}

这里再简单回顾下 Mysql 中的 limit offset
 
假设数据库表 blog 存在 13 条数据。

语句1:select * from blog limit 9, 4
语句2:select * from blog limit 4 offset 9

//语句1和2均返回表 blog 的第 10、11、12、13 行
//语句1中的 9 表示从表的第十行开始, 返回 4 行
//语句2中的 4 表示返回 4 行,offset 9 表示从表的第十行开始

如下语句显示分页效果:

语句3:select * from blog limit ($this->_curPage - 1)* self::PERPAGENUM, self::PERPAGENUM;
语句4:select * from blog limit self::PERPAGENUM offset ($this->_curPage - 1) * self::PERPAGENUM;


    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 大家觉得OpenOffice好用还是Koffice好用啊?
  • 请大家帮忙推荐几款linux下比较好用的看jpeg图和看mpeg4比较好用的软件!
  • JCreator这个编译器游人用过吗?好用吗?
  • 什么软件的java调试环境好用?
  • 请大家推荐一个好用稳定的html parser, thanks
  • 推荐一个好用点的适合家里使用的 LINUX OS 版本。
  • X-Window编程有哪些好用的库?
  • JpadPro这个java开发工具不知道好不好用啊? 给点意见!
  • java中哪种弹出消息窗口好用一些?
  • WEB前端 iis7站长之家
  • fedora 5有什么好用的ftp工具??
  • linux下有什么好用的数据库设计工具?
  • Linux的telnet、ftp的工具哪个比较好用?
  • linux 里面编写c语言用什么软件好用啊?
  • 请推荐一个好用的C的restful框架
  • Ubuntu 12.04好用吗?
  • 问一下各位,VMWare 和 Virturl PC 哪个好用
  • 谁有好用的JB5.0的注册号呀。
  • 找到了一个非常好用的编辑器,JPad Pro 4.2 Build 584 谁有它的注册码????
  • 在linux下除了gdb外还有没其他好用的调试器?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3