gpt4 book ai didi

php - 排行榜,有位置,处理相同点并跳到下一个

转载 作者:行者123 更新时间:2023-11-29 08:08:02 25 4
gpt4 key购买 nike

我有一些代码,可以计算用户在排行榜上的分数和位置,然后根据他们的分数/分数按降序显示它们。

现在我已经完成了编号,所以它看起来像这样

  • 1
  • 2
  • 2
  • 3
  • 3
  • 3
  • 4

但是我想让这个更正确并根据之前的数字跳过位置

所以它需要看起来像这样

  • 1
  • 2
  • 2
  • 4
  • 4
  • 4
  • 7

我的SQL查询如下:

$query = $db->query("select a.user_id, b.username, sum(a.points) as points, c.paid, a.time_entered
from ".TABLE_PREFIX."mytipper_tips a
inner join ".TABLE_PREFIX."users b on a.user_id = b.uid
Inner join ".TABLE_PREFIX."mytipper_users c on b.uid = c.uid
where c.compID=".intval($comp)." and a.compID=".intval($comp)."
group by a.user_id order by points desc, username asc");`

然后我使用以下代码循环遍历它们:

//now we have the query we can iterate through the list of users

$position = 1;
while($result=$db->fetch_array($query)) {

//check if it is a paid comp and if the user has paid, if so we only want to do this for the paid userds

if($is_paid==1 && $result["paid"]==1) {
$display = "1";

} else if($is_paid==1 && $result["paid"]!=1) {
$display = "0";
} else if($is_paid==0) {
$display = "1";
}

if($display=="1") {
//set the table row for display
if($row==2 || $row="") {
$row=1;
} else {
$row=2;
}
$username = htmlspecialchars_uni($result['username']);
$user_id = intval($result["user_id"]);
if($points==$result["points"]) {
$position--;
}
$points = intval(($result["points"]));

$leaderboard_link = mytipper_check_build_sef("misc.php?id=".intval($comp)."&user=".intval($user_id)."&mytipper=leaderboard_detail", $title);

if($margin_leaderboard=="1") {
$margin = "(".htmlspecialchars_uni($result["actual_result"]).")";
} else {
$margin="";
}
eval("\$leaderboard_rows .= \"".$templates->get("leaderboard_row")."\";");
$position ++;
}
}`

我无法集中精力纠正这些数字

我现在的做法是,我占据这个位置,然后减去一以使其与之前的分数保持相同的数字。

但是我该如何从第 2 号跃升至第 4 号呢?

如果这可以作为查询的一部分完成,我会很高兴

最佳答案

也许用一个简单的计数器+存储最后的位置和分数?

<?php
$i = 1; // Item counter
$lastScore = 0; // Last score
$lastPos = 0; // Last position

foreach( $... ) {

$myPosition = $i; // My position equals item counter
// If last score equals this score, my position equals last position
if( $lastScore > 0 && $myscore == $lastScore ) {
$myPosition = $lastPos;
}
$lastScore = $myScore;
$lastPos = $myPosition

++$i;
}

关于php - 排行榜,有位置,处理相同点并跳到下一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22329506/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com