$playerId= array();
$playerId[] = intval($row['Id']);
$allrounders[] = array(
'Weight'=>$fullTotal,
'Id'=>$playerId
);
rsort($allrounders);
$sliceAr = array_slice($allrounders,0,5);
foreach($sliceAr as $allroundK){
echo $allrounders[]['Id']."<br/>";
}
问题:在上面的数组中,如何相应地获取 Id Key 的值?它获取所有玩家的分数,并使用他的 ID 对其进行组织,并按降序对其进行排序。它需要第 5 个结果。我需要那些的ID。