<?php $rgData = [ [ 'account_id' => 9, 'entered' => 2 ], [ 'account_id' => 9, 'entered' => 3 ], [ 'account_id' => 9, 'entered' => 1 ] ]; $rgOrder = array_map(function($rgItem) { return $rgItem['entered']; }, $rgData); array_multisort($rgOrder, SORT_DESC, $rgData); var_dump($rgData);
You have javascript disabled. You will not be able to edit any code.