Skip to content

Instantly share code, notes, and snippets.

@pavarov
Last active July 29, 2022 13:40
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 pavarov/fe31785f5310499e66bddcbba52b6281 to your computer and use it in GitHub Desktop.
Save pavarov/fe31785f5310499e66bddcbba52b6281 to your computer and use it in GitHub Desktop.
ciryllic sort array
<?php
uasort($employees, function($a, $b) {
$a = mb_strtolower($a['name'], 'utf-8');
$b = mb_strtolower($b['name'], 'utf-8');
if ($a == $b) {
return 0;
}
return ($a < $b) ? -1 : 1;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment