欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

thinkPHP統(tǒng)計排行與分頁顯示功能示例

 更新時間:2016年12月02日 12:03:57   作者:牛逼的霍嘯林  
這篇文章主要介紹了thinkPHP統(tǒng)計排行與分頁顯示功能,結(jié)合實例形式分析了thinkPHP數(shù)據(jù)庫查詢與結(jié)果分頁顯示相關(guān)操作技巧,需要的朋友可以參考下

本文實例分析了thinkPHP統(tǒng)計排行與分頁顯示功能。分享給大家供大家參考,具體如下:

1.分頁參數(shù)

count 總數(shù)
firstRow 起始行
listRows 每一次獲取記錄數(shù)
list 每一頁的記錄(要與count對應(yīng)一致就行)

2.分頁對象

可以針對真實的數(shù)據(jù)表
也可以針對統(tǒng)計出來的數(shù)據(jù)表,或者說是虛擬的表
因為LIMIT是最后執(zhí)行的,哪怕你進(jìn)行g(shù)roup操作,哪怕你進(jìn)行子查詢

html

<include file="Public:head" title="" />
<style type="text/css">
.top {
  font-size: 18px;
  border-bottom: #ddd 1px solid;
  margin-bottom: -1px;
  font-weight: bold;
}
.top .title {
  margin:10px;
  border:1px solid #EF6C00;
  display:-webkit-box;
  border-radius: 3px;
}
.top .title .title_child {
  width: 50%;
  line-height:40px;
  -webkit-box-flex:1;
  display:block;
  color:#EF6C00;
  text-decoration:none;
}
.top .title .title_child.active {
  color:#FFF;
  background:#EF6C00;
}
.page{
  margin-right: 10px;
}
.ranknum{
  font-weight: bold;
  color:#F92672;
}
#myrank{
  color: #FFF;
  font-weight:bold;
  background-color: #FBC853;
}
</style>
<script type="text/javascript">
</script>
<body>
<div class="top text-center">
  <div class="title">
    <a class="title_child <if condition='$type neq 1'>active</if>" href="{sh::U('User/ranklist', array('type' => 0))}">月排行</a>
    <a class="title_child <if condition='$type eq 1'>active</if>" href="{sh::U('User/ranklist', array('type' => 1))}">總排行</a>
  </div>
</div>
<div id="myrank" class="alert alert-danger text-center">
  我的商戶數(shù):{sh:$my_user_count} &nbsp;&nbsp; 當(dāng)前排名: {sh:$my_rank}
</div>
<div id="datalist">
<table class="table table-hover">
   <thead>
    <tr>
     <th>&nbsp;&nbsp;#</th>
     <th>姓名</th>
     <th>商戶數(shù)</th>
    </tr>
   </thead>
   <tbody>
     <volist name="list" id="vo">
    <tr>
     <th scope="row" class="ranknum">
     <if condition="$vo.rank eq 1"><img src="{sh::RES}public/img/gold.png" style="width: 30px;">
     <elseif condition="$vo.rank eq 2"/><img src="{sh::RES}public/img/silver.png" style="width: 30px;">
     <elseif condition="$vo.rank eq 3"/><img src="{sh::RES}public/img/copper.png" style="width: 30px;">
     <else />
     &nbsp;&nbsp;{sh:$vo.rank}
     </if>
     </th>
     <td>{sh:$vo.name}</td>
     <td>{sh:$vo.usercount}</td>
    </tr>
    </volist>
   </tbody>
</table>
<div class="page text-right">
    {sh:$page}
</div>
</div>
</body>
</html>

php

// 排行榜
public function ranklist(){
    $type = $this->_get('type','trim');
    $this->assign('type',$type);
    $opener_id = $this->opener_id;
    if($type == 0){ // 上月排行
      $arrLastMonth = $this->getLastMonthStartEndDay();
      $lastStartDay = $arrLastMonth['lastStartDay'];
      $lastEndDay = $arrLastMonth['lastEndDay'].' 23:59:59'; 
      $b_time = strtotime($lastStartDay);
      $e_time = strtotime($lastEndDay);
      $where['b.addtime'] = array(array('gt',$b_time),array('lt',$e_time),'and'); 
    }
    $where['a.status'] = array('eq','1');
    M()->query('SET @rank =0;');
    $subQuery = M()->table('sh_opener a')->join('sh_user b on a.id = b.opener_id')->where($where)->group('a.id')->order('usercount desc')->field('a.id,count(b.id) as usercount,a.name')->select(false);
    $all = M()->table(''.$subQuery.' a')->getField('a.id,a.usercount,a.name,(@rank:=IFNULL(@rank,0)+1) as rank');
    $count   = count($all);
    $Page    = new Page($count, 10);
    $list    = M()->table('sh_opener a')->join('sh_user b on a.id = b.opener_id')->where($where)->group('a.id')->order('usercount desc')->limit($Page->firstRow.','.$Page->listRows)->field('count(b.id) as usercount,a.name,a.id')->select();
    foreach ($list as $k => $v) {
      $list[$k]['rank'] = $k + 1 + $Page->firstRow;
    }
    // 我的商戶
    $my_user_count = $all[$opener_id]['usercount']?$all[$opener_id]['usercount']:0;
    $my_rank = $all[$opener_id]['rank']?$all[$opener_id]['rank']:'-';
    $this->assign('my_user_count',$my_user_count);
    $this->assign('my_rank',$my_rank);
    $this->assign('page',$Page->show());
    $this->assign('list', $list);
    $this->display();
}
// 獲取上一月開始與結(jié)束日期
private function getLastMonthStartEndDay(){
    $thismonth = date('m');
    $thisyear = date('Y');
    if ($thismonth == 1) {
      $lastmonth = 12;
      $lastyear = $thisyear - 1;
    } else {
      $lastmonth = $thismonth - 1;
      $lastyear = $thisyear;
    }
    $lastStartDay = $lastyear . '-' . $lastmonth . '-1';
    $lastEndDay  = $lastyear . '-' . $lastmonth . '-' . date('t', strtotime($lastStartDay)); //t 給定月份所應(yīng)有的天數(shù),28到31
    return array('lastStartDay'=>$lastStartDay,'lastEndDay'=>$lastEndDay);
}

這里用的是thinkphp的分頁類實現(xiàn)的。

案例效果

更多關(guān)于thinkPHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《ThinkPHP入門教程》、《thinkPHP模板操作技巧總結(jié)》、《ThinkPHP常用方法總結(jié)》、《codeigniter入門教程》、《CI(CodeIgniter)框架進(jìn)階教程》、《Zend FrameWork框架入門教程》、《smarty模板入門基礎(chǔ)教程》及《PHP模板技術(shù)總結(jié)》。

希望本文所述對大家基于ThinkPHP框架的PHP程序設(shè)計有所幫助。

相關(guān)文章

  • yii2中使用Active Record模式的方法

    yii2中使用Active Record模式的方法

    這篇文章主要介紹了yii2中使用Active Record模式的方法,結(jié)合實例分析了Yii2中使用Active Record模式的具體步驟與相關(guān)操作方法,需要的朋友可以參考下
    2016-01-01
  • php生成靜態(tài)html頁面的方法(2種方法)

    php生成靜態(tài)html頁面的方法(2種方法)

    在PHP網(wǎng)站開發(fā)中為了網(wǎng)站推廣和SEO等需要,需要對網(wǎng)站進(jìn)行全站或局部靜態(tài)化處理,PHP生成靜態(tài)HTML頁面有多種方法,比如利用PHP模板、ob系列的函數(shù),本文給大家分享php生成靜態(tài)html頁面的方法(2種方法),感興趣的朋友跟著小編一起學(xué)習(xí)學(xué)習(xí)吧
    2015-09-09
  • php去除頭尾空格的2種方法

    php去除頭尾空格的2種方法

    這篇文章主要介紹了php去除頭尾空格的2種方法,本文給出了用preg_replace替換、trim函數(shù)兩種方法并給出了示例,需要的朋友可以參考下
    2015-03-03
  • php unlink()函數(shù)使用教程

    php unlink()函數(shù)使用教程

    最近在寫個網(wǎng)站,需要上傳圖片,如果修改圖片,就圖片就沒有用了,會占用服務(wù)器的硬盤資源,所以想到用unlink函數(shù)刪除舊照片.下面腳本之家小編給大家?guī)砹藀hp unlink()函數(shù)使用教程,感興趣的朋友一起看看吧
    2018-07-07
  • 關(guān)于PHP5.6+版本“No input file specified”問題的解決

    關(guān)于PHP5.6+版本“No input file specified”問題的解決

    這篇文章主要介紹了關(guān)于PHP5.6+版本“No input file specified”問題的解決,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-12-12
  • 基于在生產(chǎn)環(huán)境中使用php性能測試工具xhprof的詳解

    基于在生產(chǎn)環(huán)境中使用php性能測試工具xhprof的詳解

    本篇文章是對在生產(chǎn)環(huán)境中使用php性能測試工具xhprof進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
    2013-06-06
  • 利用PHP?POST臨時文件機(jī)制實現(xiàn)任意文件上傳的方法詳解

    利用PHP?POST臨時文件機(jī)制實現(xiàn)任意文件上傳的方法詳解

    這篇文章主要介紹了利用?PHP?POST?臨時文件機(jī)制實現(xiàn)任意文件上傳,同時該過程也會打斷 php 對臨時文件的處理,雖然最終仍會被刪除,但相較之前可以明顯看出臨時文件在磁盤的中存在的時間變長了,需要的朋友可以參考下
    2022-04-04
  • 如何使用jQuery+PHP+MySQL來實現(xiàn)一個在線測試項目

    如何使用jQuery+PHP+MySQL來實現(xiàn)一個在線測試項目

    本文將結(jié)合實例給大家介紹如何使用jQuery+PHP+MySQL來實現(xiàn)在線測試題,包括動態(tài)讀取題目,答題完畢后臺評分,并返回答題結(jié)果。
    2015-04-04
  • ThinkPHP5.0多個文件上傳后找不到臨時文件的修改方法

    ThinkPHP5.0多個文件上傳后找不到臨時文件的修改方法

    這篇文章主要介紹了ThinkPHP5.0多個文件上傳后找不到臨時文件的修改方法,需要的朋友可以參考下
    2018-07-07
  • smarty中post用法實例

    smarty中post用法實例

    這篇文章主要介紹了smarty中post用法,以實例形式詳細(xì)分析了在smarty中POST的具體實現(xiàn)過程,包括了配置文件的調(diào)用與模板文件的實現(xiàn),需要的朋友可以參考下
    2014-11-11

最新評論