Created
June 16, 2015 21:07
-
-
Save akondas/1cfd8d8b67c9ec44d236 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <?php | |
| // przed php 7 | |
| uasort($array, function($a, $b){ | |
| return ($a < $b) ? -1 : (($a > $b) ? 1 : 0); | |
| }); | |
| // po php 7 | |
| uasort($array, function($a, $b){ | |
| return $a <=> $b; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment