Skip to content

Instantly share code, notes, and snippets.

@paddya
Created March 25, 2012 12:03
Show Gist options
  • Save paddya/2193173 to your computer and use it in GitHub Desktop.
Save paddya/2193173 to your computer and use it in GitHub Desktop.
function objSort(&$arr) {
usort($arr, function($a, $b) {
if($a !== null && $b !== null) {
return $a->compareTo($b);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment