<?php $my_array = array( array("date" => "10/04/2019"), array("date" => "10/05/2017") ); usort($my_array, function ($a, $b) { return strtotime($a['date']) <=> strtotime($b['date']); }); print_r($my_array);
You have javascript disabled. You will not be able to edit any code.