- print_r: documentation ( source)
- strtotime: documentation ( source)
- usort: documentation ( source)
<?php
$arr = array('11-01-2012', '01-01-2014', '01-01-2015', '09-02-2013', '01-01-2013');
function date_sort($a, $b) {
return strtotime($a) - strtotime($b);
}
usort($arr, "date_sort");
print_r($arr);