在 PHP 中对数组项进行排序,使其不区分字母大小写

发布于 2024-12-10 03:26:03 字数 291 浏览 0 评论 0原文

当我使用 sort($topics) 时,我得到的内容如下:

  1. Apple
  2. Green
  3. Zebragrass
  4. 在这个例子中,“ grass

”以小写 g 开头,但在“Zebra”之后结束,其中“Zebra”有一个大写字母。

我该如何制作,以便它在忽略单词是否以大写开头的情况下对其进行排序?

  1. 苹果
  2. 绿草
  3. 斑马

When I use sort($topics) I get something along the lines of:

  1. Apple
  2. Green
  3. Zebra
  4. grass

In this example, "grass" starts with a lower case g but ends up after "Zebra" which has a capital letter.

How do I make it so that it sorts it where it ignores whether the word starts with capitals or not?

  1. Apple
  2. Green
  3. grass
  4. Zebra

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

氛圍 2024-12-17 03:26:04

natcasesort

natcasesort($topics);

There is natcasesort .

natcasesort($topics);
箹锭⒈辈孓 2024-12-17 03:26:03

调用 usort() 作为 usort($topics, 'strnatcasecmp')< /代码>。

strcasecmp 也可以完成这项工作,但是 strnatcasecmp 会当字符串中有数字时也可以正确排序。

Call usort() as usort($topics, 'strnatcasecmp').

strcasecmp would do the job, too, but strnatcasecmp will also sort properly when you have numbers in your string.

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