溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ThinkPHP實現(xiàn)分頁實例

發(fā)布時間:2020-08-04 11:59:07 來源:網(wǎng)絡 閱讀:244 作者:shenliyang 欄目:web開發(fā)
1.

點擊(此處)折疊或打開

  1. public function index(){
  2.         $where = 'TRUE';
  3.         $membersModel = new Model("Members");
  4.         
  5.         //分頁
  6.         import('ORG.Util.Page');// 導入分頁類
  7.         $count = $membersModel->where($where)->count();// 查詢滿足要求的總記錄數(shù)
  8.         $Page = new Page($count,1);// 實例化分頁類 傳入總記錄數(shù)和每頁顯示的記錄數(shù)
  9.         $show = $Page->show();// 分頁顯示輸出
  10.         // 進行分頁數(shù)據(jù)查詢 注意limit方法的參數(shù)要使用Page類的屬性
  11.         $rows = $membersModel->where($where)->limit($Page->firstRow.','.$Page->listRows)->select();
  12.       // $this->assign('list',$rows);//
  13.         

  14.         
  15. // if($rows){
  16. // import('ORG.Net.IpLocation');// 導入IpLocation類
  17. // $Ip = new IpLocation('UTFWry.dat'); // 實例化類 參數(shù)表示IP地址庫文件。下載dat文件到net目錄下
  18. // foreach ($rows as $k=>$v){
  19. // $area = $Ip->getlocation($v['regIP']);
  20. // $rows[$k]['location'] = isset($area['country'])?$area['country']:'未知地址';// 獲取某個IP地址所在的位置
  21. // }
  22. // }
  23.         $this->assign('rows',$rows);
  24.         $this->assign('page',$show);// 賦值分頁輸出

  25.         $this->display();
  26.     }
2.

點擊(此處)折疊或打開

  1. <tr>
  2.                 <td colspan="6">{$page}</td>
  3.             </tr>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI