在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
简单php分页,作为备忘录。 /** * 获取所有数据(带分页) * @param string $table 表名 * @param int $pageNow 显示第几页,默认1 * @param string $where where条件 * @param int $pageSize 每页几条记录,默认5 * @param bool $restriction 是否显示分页越界默认限制 * @author bx */ public function getPageData($table, $pageNow = 1, $where = '', $pageSize = 10,$restriction = true) { if(!empty($where)) { $where = "where $where"; } $sqlCount = "SELECT count(1) countnum FROM `{$table}` {$where}"; //获取总页数 $countData = $this->db->query_first($sqlCount); //获取可分页数 $pageCount = ceil($countData['countnum'] / $pageSize); if ($restriction) { //限制分页越界 $pageNow = min($pageCount,max(1,$pageNow)); } $offset = ($pageNow - 1) * $pageSize; $sql = "SELECT * FROM `{$table}` {$where} limit {$offset},{$pageSize}"; return array( 'pageNow' => $pageNow,//当前页码 'pageCount' => $pageCount, //一共多少页 'pageData' => $this->db->dataArray($sql), 'pagePre' => $pageNow - 1, //上一页 'pageNex' => $pageNow + 1, //下一页 ); }
|
2022-08-30
2022-08-17
2022-11-06
2022-08-18
2022-07-18
请发表评论