PHP:为什么标志SORT_LOCALE_STRING无法正常工作?

时间:2018-06-26 16:52:04

标签: php sorting utf-8 localization

我的代码-简单易用:

patsy$EvalEnvironment(list())

结果:

  

array(5){[2] =>字符串(11)“ Deutschland” [1] =>字符串(6)“ Indien”   [3] =>字符串(23)“ VereinigtesKönigreich” [4] =>字符串(8)“津巴布韦”   [0] =>字符串(11)“Österreich”}

预期结果:

  

array(5){[2] =>字符串(11)“ Deutschland” [1] =>字符串(6)“ Indien”   [3] =>字符串(11)“Österreich” [4] =>字符串(23)“ VereinigtesKönigreich”   [0] =>字符串(8)“津巴布韦”}

文档:http://php.net/manual/de/function.sort.php

问题:即使我在排序之前专门设置了setlocale,该字符串也没有在本地排序。这里出了什么问题,我该如何解决? ÖUmlaut预计将直接位于字母O之间。这里可能出什么问题了?

0 个答案:

没有答案