Skip to content

Instantly share code, notes, and snippets.

@Bhavya8181
Forked from jack2jm/sort-array-by-key
Created February 12, 2024 05:53
Show Gist options
  • Save Bhavya8181/f1b29c595a72799bcb273dce1a6147f2 to your computer and use it in GitHub Desktop.
Save Bhavya8181/f1b29c595a72799bcb273dce1a6147f2 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