Skip to content

Instantly share code, notes, and snippets.

@jjmartucci
Created February 2, 2015 20:03
Show Gist options
  • Save jjmartucci/0b9bd6872259440fc129 to your computer and use it in GitHub Desktop.
Save jjmartucci/0b9bd6872259440fc129 to your computer and use it in GitHub Desktop.
Sort by DateTime
$arr = array(...);
usort($arr, function($a, $b) {
$ad = new DateTime($a['dateTime']);
$bd = new DateTime($b['dateTime']);
if ($ad == $bd) {
return 0;
}
return $ad < $bd ? 1 : -1;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment