Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save thorbrink/6514393 to your computer and use it in GitHub Desktop.
Save thorbrink/6514393 to your computer and use it in GitHub Desktop.
usort( $array, function( $a, $b ) {
if( $a['key'] === $b['key'] ) {
return 0;
}
return ( $a['key'] < $b['key'] ) ? 1 : -1;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment