$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 キーの値を取得する方法を教えてください。すべてのプレーヤーのスコアを取得し、それを自分の ID で整理して、降順に並べ替えます。最初の 5 つの結果がかかります。それらのIDが必要です。