I\'m having a problem. I have a multidimensional array, that looks like this:
Array ( [0] => Array ( [0] => Testguy
You can do it using usort with a Closure :
usort
Closure
usort($array, function($a, $b) { $a = strtotime($a[2]); $b = strtotime($b[2]); return (($a == $b) ? (0) : (($a > $b) ? (1) : (-1))); });