摘要: //分页开始 $count=M('article')->where($condition)->count(); $p = intval($p) > 0 ? $p : 1; $pagesize = 9;#每页数量 $offset = $pagesize * ($p - 1);//计算记录偏移量 $page = new... 阅读全文
posted @ 2018-02-01 13:19 拉斐1982 阅读(104) 评论(0) 推荐(0) 编辑