On gists
Sort in current language
PHP Libs
PHP
sort.php
Raw
#
<?php
public function sortInCurrentLanguage(array $items)
{
$oldLocale = setlocale(LC_ALL, 0);
setlocale (LC_ALL, 'cs_CZ.UTF-8');
uasort($items, 'strcoll');
setlocale (LC_ALL, $oldLocale);
}