Skip to content

Instantly share code, notes, and snippets.

@Enelar
Created March 5, 2018 08:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Enelar/692d2d7393a867e819e6e074399e0d82 to your computer and use it in GitHub Desktop.
Save Enelar/692d2d7393a867e819e6e074399e0d82 to your computer and use it in GitHub Desktop.
Cleanest user compare function
function ucmp($a, $b)
{
$diff = $a - $b;
return ($diff > 0) - ($diff < 0);
}
usort([7,8,-1], "ucmp");
function you_get_the_idea($a, $b)
{
$diff = $a['price'] - $b['price'];
return ($diff > 0) - ($diff < 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment