Skip to content

Instantly share code, notes, and snippets.

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 s2ar/706dc38c98114491a5eff3ab7fcc35e8 to your computer and use it in GitHub Desktop.
Save s2ar/706dc38c98114491a5eff3ab7fcc35e8 to your computer and use it in GitHub Desktop.
php. сортировка массива по текстовому полю
<?php
if(!function_exists('cmp')){
function cmp($a, $b) {
return strcasecmp($a['short_name'], $b['short_name']);
}
}
uasort($arResult['OFFER_LEAF'], 'cmp');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment