<?php $array = [ 'team1' => [ 'points' => 10, 'players' => [], ], 'team2' => [ 'points' => 23, 'players' => [] ] ]; uasort($array, fn($a, $b) => $b['points'] <=> $a['points']); var_export($array);
You have javascript disabled. You will not be able to edit any code.