Skip to content

Instantly share code, notes, and snippets.

@happz
Created March 18, 2014 08:10
Show Gist options
  • Save happz/9615585 to your computer and use it in GitHub Desktop.
Save happz/9615585 to your computer and use it in GitHub Desktop.
function cmp($a, $b) {
return intval($a["age"]) - intval($b["age"]);
}
usort($pole, "cmp");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment