There is such an array:
Array ( [0] => Yury [1] => Maxim [2] => Юденок [3] => Мыков )
How to sort it so that the 1st were Russian words in alphabetical order, then English?
sort($arr); echo "<pre>"; print_r($arr); echo "</pre>"; Array ( [0] => Maxim [1] => Yury [2] => Мыков [3] => Юденок )
So, but I would like Russian words to be on top.