<?php $array = [ [ "points" => 10, "details" => ["name" => "Team A", "rank" => ""] ], [ "points" => 10, "details" => ["name" => "Team B", "rank" => ""] ], [ "points" => 8, "details" => ["name" => "Team C", "rank" => ""] ], [ "points" => 6, "details" => ["name" => "Team D", "rank" => ""] ], ]; $denseRank = 0; foreach ($array as ['points'=> $points, 'details' => ['rank' => &$rank]]) { $denseRanks[$points] ??= ++$denseRank; $rank = $denseRanks[$points]; } var_export($array);
You have javascript disabled. You will not be able to edit any code.