I have an array as follow: The first key element is a date with the format dd-mm-yyyy
Array
(
[08-12-2015] => Array
(
------------
)
[07-12-2015] => Array
(
------------
)
[09-12-2015] => Array
(
------------
)
)
Is it possible to sort this array on the first key value bij date? So the first element is
Array
(
[07-12-2015] => Array
(
------------
)
[08-12-2015] => Array
(
------------
)
[09-12-2015] => Array
(
------------
)
)