<?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);
You have javascript disabled. You will not be able to edit any code.