Skip to content

Instantly share code, notes, and snippets.

@morozVA
Created October 24, 2018 07:09
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 morozVA/760a484082ebfd9803f1ac53728305f5 to your computer and use it in GitHub Desktop.
Save morozVA/760a484082ebfd9803f1ac53728305f5 to your computer and use it in GitHub Desktop.
php sorting data in a multidimensional array
usort($res, function ($a, $b)
{
return strcmp($a["LastName"], $b["LastName"]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment