Skip to content

Instantly share code, notes, and snippets.

@luispinto23
Created November 24, 2014 12:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luispinto23/99bb79a9de2776adedec to your computer and use it in GitHub Desktop.
Save luispinto23/99bb79a9de2776adedec to your computer and use it in GitHub Desktop.
PHP array sort by key
usort($arrayFoo, function($a, $b) {
return $a['ordemBar'] - $b['ordemBar'];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment