对包含法语和英语字符串的数组进行排序

发布于 2024-12-29 01:06:26 字数 188 浏览 0 评论 0原文

我遇到的问题是,当我对字符串数组调用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

输什么也不输骨气 2025-01-05 01:06:26

排序规则高度依赖于区域设置。
您可以使用 SORT_LOCALE_STRING 标志强制区域设置:

setlocale("LC_ALL", "fr_FR.utf8"); 
sort($arraytobesorted, 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:

setlocale("LC_ALL", "fr_FR.utf8"); 
sort($arraytobesorted, SORT_LOCALE_STRING);

http://php.net/manual/en/function.sort.php

风苍溪 2025-01-05 01:06:26

这是正确排序的。在默认区域设置中,“É”位于“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文