I have an array of arrays. I want to order these arrays by their ['date'] field. So the latest is at index [0]. How can I do this?
Here is an example of my print_r
$array= (
[0] => Array
(
[date] => 01/05/2013 12:00
[location] => Town Hall
[minutes] => mydomain.com
[agenda] =>
),
[1] => Array
(
[date] => 09/05/2013 12:00
[location] => Town Hall
[minutes] => mydomain.com/walker
[agenda] =>
)
)