Skip to content

Instantly share code, notes, and snippets.

@akondas
Created June 16, 2015 21:07
Show Gist options
  • Select an option

  • Save akondas/1cfd8d8b67c9ec44d236 to your computer and use it in GitHub Desktop.

Select an option

Save akondas/1cfd8d8b67c9ec44d236 to your computer and use it in GitHub Desktop.
<?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