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