I have this king of array in php and would like to sort it by the date Array[i][2] of the array.. the highest date should be at the top.. how can i do this?
this is my array:
Array (
[0] => Array (
[0] => 15.04.2013
[1] => 17:34
[2] => 06.04.2013
)
[1] => Array (
[0] => 15.04.2013
[1] => 15:12
[2] => 13.04.2013
)
[2] => Array (
[0] => 15.04.2013
[1] => 16:42
[2] => 16.02.2013
)
[3] => Array (
[0] => 04.04.2013
[1] => 21:12
[2] => 16.03.2013
)
[4] => Array (
[0] => 29.04.2013
[1] => 17:16
[2] => 19.04.2013
)
)