search
Homephp教程PHP源码新闻分页下标生成

新闻分页下标生成

May 23, 2016 am 08:39 AM

后台生成装有下标页码的数组,到网页上打印出来(可以定义下标页码的长度)

1. [代码]后台页码下标生成   

/**
     *分页下标生成
     * 
     * @param $page    页码
     * @param $num     多少行为一页
     * @param $rows    数据总行数
     * @param $length  下标最大显示个数
     * @return array   返回数组
     */
    public function PageDate($page, $num , $rows , $length){
        //初始化数据
        $MaxPage = 0;                //最大页码
        $MinPage = 0;                //最小页码
        $ServerPage = 0;             //下拉框中选中页码
        $PageData = array();         //全部页码数组(供下拉选择框使用)
        $PageShowData = array();     //显示的下标数组
        
        $page = intval($page);      

        if($rows == 0){
            return $data = array(
                'page' => $page,
                'MaxPage' => $MaxPage,
                'MinPage' => $MinPage,
                'ServerPage' => $ServerPage,
                'PageData' => $PageData,
                'PageShowData' => $PageShowData
            );
        }

        //得到最大分页和最小分页
        $MaxPage = intval($rows / $num);
        $double = $rows % $num;
        if($double > 0.000000001)
        {
            $MaxPage += 1;
        }
        $MinPage = 1;
        $ServerPage = 1;
        //得到页码的全部项目
        for($i = 1; $i <= $MaxPage; $i++ ){
            $PageData[$i] = $i;
        }
        //对页码进行正确性改正
        if($page < $MinPage){
            $page = 1;
        }

        if($page > $MaxPage){
            $page = 1;
        }
        /*生成显示的页码标签*/
            //生成左侧的代码快
            if($page == $MinPage){
                $PageShowData[1] = $page;
            }
            if($page > $MinPage){
                $PageShowData[1] = $MinPage;
//                $PageShowData[2] = $page - 1; // <<
                $PageShowData[2] = &#39;<<&#39;; // <<
                if($page -2 > $MinPage ){
                    $PageShowData[3] = $page - 2;
                    $PageShowData[4] = $page - 1;
                }elseif($page -2 == $MinPage){
                    $PageShowData[3] = $page - 1;
                }
                //确定选中的页码代码快
                $PageShowData[count($PageShowData) + 1] = $page;
            }
        $COUNT = count($PageShowData) + 1;
        //生成右侧的代码块
            if($page == $MaxPage){
                return $data = array(
                    &#39;page&#39; => $page,
                    &#39;MaxPage&#39; => $MaxPage,
                    &#39;MinPage&#39; => $MinPage,
                    &#39;ServerPage&#39; => $ServerPage,
                    &#39;PageData&#39; => $PageData,
                    &#39;PageShowData&#39; => $PageShowData
                );
            }
            if($page < $MaxPage) {
                if($MaxPage - $page >= 2){
                    $j = 1;
                    for($i = $COUNT; $i <= $length ; $i++){
                        $PageShowData[$i] = $page + $j;
                        $j ++;
                        if($PageShowData[$i] == $MaxPage -1){
                            break;
                        }
                    }
                }

                $COUNT = count($PageShowData) + 1;
//                $PageShowData[$COUNT] = $page + 1; //>>
                $PageShowData[$COUNT] = &#39;>>&#39;;
                $PageShowData[$COUNT + 1] = $MaxPage;

                //得到选中的参数
                $ServerPage = $PageShowData[$COUNT-1] + 1;
                if($ServerPage > $MaxPage){
                    $ServerPage = 1;
                }

                return $data = array(
                    &#39;page&#39; => $page,
                    &#39;MaxPage&#39; => $MaxPage,
                    &#39;MinPage&#39; => $MinPage,
                    &#39;ServerPage&#39; => $ServerPage,
                    &#39;PageData&#39; => $PageData,
                    &#39;PageShowData&#39; => $PageShowData
                );
            }

    }

                       

2. [图片] 截图1453701874.png         


新闻分页下标生成

3. [图片] lALOBuS0o80BT80D3w_991_335.png    

新闻分页下标生成

                                           

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),