Created
September 12, 2012 21:47
-
-
Save awrowse/3710170 to your computer and use it in GitHub Desktop.
PHP Object Sort Numeric
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
usort($navItems, function($x, $y){ | |
if ($x->LinkOrder == $y->LinkOrder) { return 0; } | |
return ($x->LinkOrder < $y->LinkOrder) ? -1 : 1; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment