I want to sort a PHP array that have multiple array with key values.
Sample Array:
Array
(
[1240830] => Array
(
[name] => Jannah
[order] => 8
)
[1240831] => Array
(
[name] => Eadie
[order] => 10
)
[1240832] => Array
(
[name] => [email protected]
[order] => 0
)
[1240911] => Array
(
[name] => on
[order] => 0
)
)
So I need array that sorted according to Order value in ASC. How can I achieve this?