Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created May 31, 2013 14:33
Show Gist options
  • Save jlittlejohn/5685387 to your computer and use it in GitHub Desktop.
Save jlittlejohn/5685387 to your computer and use it in GitHub Desktop.
PHP: Usorting
<?php
$successful = usort($students, function ($a, $b) {
return $a['age'] - $b['age'];
});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment