Skip to content

Instantly share code, notes, and snippets.

@fdask
Created February 11, 2014 17:07
Show Gist options
  • Select an option

  • Save fdask/8939261 to your computer and use it in GitHub Desktop.

Select an option

Save fdask/8939261 to your computer and use it in GitHub Desktop.
PHP - Sort multi-dimensional array by value
// call this
usort($myArray, function($a, $b) {
return $a['order'] - $b['order'];
});
// ends up sorting in reverse order, or
$myArray = array_reverse($myArray);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment