I have to sort the given array on date key in PHP. I have tried it using array_multisort but not able to sort it. which one is more appropriate usort or array_multisort?
Array
(
[165953] => Array
(
[0] => Array
(
[wallet_transaction_id] => 165953
[wallet_currency_id] => 2
[description] => updating SC Dollars by 100.00 from PSM product transaction.
[amount] => 100.00
[date] => 2013-11-13 08:08:05
)
[1] => Array
(
[wallet_transaction_id] => 165953
[wallet_currency_id] => 3
[description] => updating Spy Points by 50.00 from PSM product transaction.
[amount] => 50.00
[date] => 2013-11-13 06:08:05
)
)
[165952] => Array
(
[0] => Array
(
[wallet_transaction_id] => 165952
[wallet_currency_id] => 2
[description] => updating SC Dollars by 100.00 from PSM product transaction.
[amount] => 100.00
[date] => 2013-11-13 05:02:11
)
[1] => Array
(
[wallet_transaction_id] => 165952
[wallet_currency_id] => 3
[description] => updating Spy Points by 50.00 from PSM product transaction.
[amount] => 50.00
[date] => 2013-11-13 08:02:11
)
)
)