Skip to content

Instantly share code, notes, and snippets.

@qwersk
Created November 14, 2017 04:26
Show Gist options
  • Save qwersk/e6234dad514d85780c2be3795e6f18de to your computer and use it in GitHub Desktop.
Save qwersk/e6234dad514d85780c2be3795e6f18de to your computer and use it in GitHub Desktop.
Sort by date value in array #PHP
<?php
function sortFunction( $a, $b ) {
return strtotime($a->Date) - strtotime($b->Date);
}
usort($zone_slots, "sortFunction");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment