<?php $array = [ 1 => ['id' => 1, 'sort' => 1], 3 => ['id' => 3, 'sort' => 3], 2 => ['id' => 2, 'sort' => 2], ]; uasort($array, fn($a, $b) => $a['sort'] <=> $b['sort']); var_export($array);
You have javascript disabled. You will not be able to edit any code.