我试图在这里和谷歌搜索许多线程,但没有什么对我有用...我必须排序字符串数组,其中包含捷克语(utf8)字符串,如[a,b,z, C 下,v,ř] 我正在使用setLocale和usort,但我也尝试过经典排序,asort等......
这是我现在使用的代码(但不工作..) 谢谢你的帮助!
$sortDocTypes = function ($a, $b) {
SetLocale(LC_ALL, "cs_CZ");
return strcoll($a, $b);
};
usort($generatedDocumentList, $sortDocTypes);