thinkphp分頁類使用,以及修改,添加了每頁第一和最後的序號

function index(){ // 分頁查詢 // 每頁顯示的記錄數 $limit = 5; // 獲取總記錄數量 $total = $model->where($cond)->count(); // 獲取分頁Page對象 $page = new Page($total, $limit); // 完成查詢 $rows = $model ->where($cond)
相關文章
相關標籤/搜索