Skip to content

Instantly share code, notes, and snippets.

@andrewwheal
Created September 11, 2015 13:40
Show Gist options
  • Save andrewwheal/9f57f6d744bbf9c2714b to your computer and use it in GitHub Desktop.
Save andrewwheal/9f57f6d744bbf9c2714b to your computer and use it in GitHub Desktop.
$arr = [...];
uasort(
$arr,
function($a, $b) {
return strnatcmp($a['foo'], $b['foo']);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment