Skip to content

Instantly share code, notes, and snippets.

@KrotovRoman
Last active November 29, 2018 03:17
Show Gist options
  • Select an option

  • Save KrotovRoman/c8402f1db89d657f2b1c3d228e36c547 to your computer and use it in GitHub Desktop.

Select an option

Save KrotovRoman/c8402f1db89d657f2b1c3d228e36c547 to your computer and use it in GitHub Desktop.
сортировка многомерного массива
//$res - массив который надо отсортировать по полю in_group
//по возрастанию
usort($res, function($a, $b){
return ($a['in_group'] - $b['in_group']);
});
//по убыванию
usort($res, function($a, $b){
return ($b['in_group'] - $a['in_group']);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment