Skip to content

Instantly share code, notes, and snippets.

@webyroki
Last active March 16, 2017 22:39
Show Gist options
  • Save webyroki/e7e91203210067ac39502058bb248c27 to your computer and use it in GitHub Desktop.
Save webyroki/e7e91203210067ac39502058bb248c27 to your computer and use it in GitHub Desktop.
Сортировка значений в массиве по дате
function cmp($a, $b)
{
$a = date("dmY", strtotime($a));
$b = date("dmY", strtotime($b));
if ($a == $b) {
return 0;
}
return ($a < $b) ? -1 : 1;
}
usort($timedate, "cmp");
echo "<pre>";
print_r($timedate);
echo "</pre>";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment