<?php
$array = Array
(
0 => Array
(
'configuration_id' => 10,
'id' => 1,
'optionNumber' => 3,
'optionActive' => 1,
'lastUpdated' => '2010-03-17 15:44:12',
),
1 => Array
(
'configuration_id' => 9,
'id' => 1,
'optionNumber' => 2,
'optionActive' => 1,
'lastUpdated' => '2010-03-17 15:44:12',
),
2 => Array
(
'configuration_id' => 8,
'id' => 1,
'optionNumber' => 1,
'optionActive' => 1,
'lastUpdated' => '2010-03-17 15:44:12',
)
);
array_multisort(array_map(function($element) {
return $element['optionNumber'];
}, $array), SORT_ASC, $array);
print_r($array);
preferences:
25.28 ms | 406 KiB | 5 Q