0

我正在尝试向顶级用户展示活动点数,我只能使用此代码获得顶级用户

<?php
$dbase = Phpfox::getLib('database');
            $aRow = $dbase->select(Phpfox::getUserField() . ', ur.activity_points AS score')
                    ->from(Phpfox::getT('user'), 'u')
                    ->join(Phpfox::getT('user_activity'),'ur','ur.user_id = u.user_id')
                    ->where('ur.activity_points > 0')
                    ->limit(10)         
                    ->order('ur.activity_points DESC')
                    ->execute('getRow');  
?>
<?php if (count ( $aRow )){ ?>
<div class="block" id="js_sortable_friend_mini"><div class="title ">Top Active Users</div>
<div class="clear" style="height: 5px;"></div>
<ul id="topuserpoints">
<div class="name_userpoints">
<?php echo '<a href="' . Phpfox::getLib('phpfox.url')->makeUrl('profile', $aRow['user_name']) . '">' . $aRow['full_name'] . '</a>'; ?>
</div>
<div class="score_userpoints">
<?php echo $aRow['score']; ?>
</div></ul>
</div>
<div class="clear"></div>
<?php } unset($aRow); ?>

此代码仅提供顶级用户。但我想要前 5 名。请帮忙

4

2 回答 2

0

尝试使用“getRows”执行并将限制设置为 5,如果您想要最好的 5 个:

               ......
                ->limit(5)         
                ->order('ur.activity_points DESC')
                ->execute('getRows'); 
              .....
于 2014-12-27T11:43:19.600 回答
0

您可以在查询中尝试使用 getRows 或 getSlaveRows 而不是 getRow。

->execute('getRow');  

getRow 将只返回一条记录,getRows 将返回多条记录。

下面的代码是基于活动点的显示排名选项。

$dbase = Phpfox::getLib('database');
$aRow = $dbase->select(Phpfox::getUserField() . ', ur.activity_points , FIND_IN_SET( activity_points, ( SELECT GROUP_CONCAT( DISTINCT activity_points ORDER BY activity_points DESC ) FROM '.Phpfox::getT('user_activity').')) AS rank ')
                ->from(Phpfox::getT('user'), 'u')
                ->join(Phpfox::getT('user_activity'),'ur','ur.user_id = u.user_id')
                ->where('ur.activity_points > 0')
                ->limit(10)         
                ->order('rank')
                ->execute('getRows');  
于 2015-03-17T10:00:29.937 回答