基本信息
源码名称:thinkphp 分页源码 示例下载
源码大小:1.15M
文件格式:.rar
开发语言:PHP
更新时间:2017-02-14
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 5 元 
   源码介绍

淘宝商品列表的分页效果很好看,就用thinkphp结合了一下



if ($this->totalPages >= 2) { 
    $down_row = $down_row > $this->totalPages ? $this->totalPages : $down_row; 
    $page_inputer = str_replace( 
            array('%NEXT_PAGE%', '%TOTAL_PAGE%', '%JUMP_PAGE%'), array($down_row, $this->totalPages, $url_last), $this->config['inputer']); 
}