Skip to content

Instantly share code, notes, and snippets.

@jack2jm
Created October 9, 2019 10:31
Show Gist options
  • Save jack2jm/c28f8f570680f3e614b4dd71a3eafdd2 to your computer and use it in GitHub Desktop.
Save jack2jm/c28f8f570680f3e614b4dd71a3eafdd2 to your computer and use it in GitHub Desktop.
function sort_by_value($a, $b) {
return $b['score'] > $a['score'] ? 1 : -1;
}
//sort using usort
usort($events_temp, 'sort_by_value');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment