对包含法语和英语字符串的数组进行排序
我遇到的问题是,当我对字符串数组调用 sort() 时,它会按字母顺序排列,但法语字符串除外。
它将像这样排序:
Atlantic Inc.
Bait Inc.
Zack's Fish Mart
Émile Fisheries Inc.
我可以做什么来适当地对两种语言进行排序?
The problem I am having is that when I call sort() on my array of strings, it alphabetizes it fine, except for french strings.
It will sort it like so:
Atlantic Inc.
Bait Inc.
Zack's Fish Mart
Émile Fisheries Inc.
What can I do to sort both languages appropriately?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
排序规则高度依赖于区域设置。
您可以使用 SORT_LOCALE_STRING 标志强制区域设置:
http://php.net/manual/en /function.sort.php
The sorting rules are highly dependent on the locale.
You can force a locale using the SORT_LOCALE_STRING flag:
http://php.net/manual/en/function.sort.php
这是正确排序的。在默认区域设置中,“É”位于“Z”之后。
要更改此行为,请将
sort()
的第二个参数设置为“SORT_LOCALE_STRING”,并将系统的区域设置更改为支持您想要的排序的区域设置。This is being sorted correctly. 'É' comes after 'Z' in your default locale.
To change this behaviour, set the second parameter of
sort()
to 'SORT_LOCALE_STRING' and change your system's locale to one that supporting the ordering you desire.