Created
November 14, 2017 04:26
-
-
Save qwersk/e6234dad514d85780c2be3795e6f18de to your computer and use it in GitHub Desktop.
Sort by date value in array #PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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