Skip to content

Instantly share code, notes, and snippets.

@YuriDan
Created January 20, 2014 04:32
Show Gist options
  • Save YuriDan/8514899 to your computer and use it in GitHub Desktop.
Save YuriDan/8514899 to your computer and use it in GitHub Desktop.
Сортировка многомерного массива по значению вложенных элементов
<?function cmp_props($a, $b){
if ($a['SORT'] == $b['SORT']) { return 0; }
return ($a['SORT'] < $b['SORT']) ? -1 : 1;
}
uasort($arProps, "cmp_props");?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment