Skip to content

Instantly share code, notes, and snippets.

@gaissa
Last active April 15, 2017 07:47
Show Gist options
  • Save gaissa/c1c8f4ede8773dc8b002 to your computer and use it in GitHub Desktop.
Save gaissa/c1c8f4ede8773dc8b002 to your computer and use it in GitHub Desktop.
sort array by value
private function sort_array_by_value(&$array, $subfield)
{
$sortarray = array();
foreach ($array as $key => $row)
{
$sortarray[$key] = $row[$subfield];
}
array_multisort($sortarray, SORT_ASC, $array);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment