Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对字符编码没有足够的了解。我用utf-8我想。我有一个数组,我想按字母顺序和区分大小写的顺序排列它。
utf-8
我正在这样做,但我在数组中使用了一些字符串,其中一些以开头,ç,ı,ö,ğ然后到达排序数组的末尾。
ç,ı,ö,ğ
我想要像abcç gğ oö ıi sş. 我在 Joomla 中使用它,如果JArrayHelper::sortObjects适用,我该如何使用它?我不明白我应该为第二个参数做什么。谢谢阅读。
abcç gğ oö ıi sş
JArrayHelper::sortObjects
php> $foo = array("ç", "öooo", "öaaa"); php> sort($foo); php> print_r($foo); Array ( [0] => ç [1] => öaaa [2] => öooo )