Skip to content

Instantly share code, notes, and snippets.

@faboo03
Created January 28, 2013 14:51
Show Gist options
  • Save faboo03/4656100 to your computer and use it in GitHub Desktop.
Save faboo03/4656100 to your computer and use it in GitHub Desktop.
Exemple uasort
uasort(
$returnArray,
function ($a, $b) {
return $a["total"] < $b["total"] ? 1 : -1;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment