对关联数组进行排序

发布于 2024-10-21 04:04:04 字数 422 浏览 3 评论 0原文

我有一个格式的关联数组,

[Article_title_1] => Array
        (
            [description] => Trial
            [created] => date
        )
[Article_title_2] => Array
        (
            [description] => Trial
            [created] => date
        )

我想按字母顺序(按标题)对数组进行排序,其中 Article_title_2 是文章的标题。

我尝试过排序。它不起作用。我试图使用 cakephp 的集合排序,也无法让它工作。

我很感激任何帮助。

谢谢。

I have an associative array of format

[Article_title_1] => Array
        (
            [description] => Trial
            [created] => date
        )
[Article_title_2] => Array
        (
            [description] => Trial
            [created] => date
        )

I want sort the array in alphabetical order(by title) where Article_title_2 is the title of the article.

I tried ksort. It does not work. I was trying to use cakephp's set sort, could not get it to work either.

I appreciate any help.

Thanks.

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

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

发布评论

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

评论(1

伴我老 2024-10-28 04:04:04

ksort() 会将每个键视为一个字符串,因此它将根据正常的字符串排序规则进行排序,并且区分大小写。这意味着您最终可能会得到:

Article_Title_12
Article_title_1
Article_title_10
Article_title_11
Article_title_2
Article_title_3
Article_title_4
Article_title_5
Article_title_6
Article_title_7
Article_title_8
Article_title_9

如果这是您的问题,那么您将需要使用 uksort () 带有自定义比较函数

ksort() will treat each of your keys as a string, so it will sort according to normal string ordering rules, and is case-sensitive. This means you could end up with:

Article_Title_12
Article_title_1
Article_title_10
Article_title_11
Article_title_2
Article_title_3
Article_title_4
Article_title_5
Article_title_6
Article_title_7
Article_title_8
Article_title_9

If this is your problem, then you will need to use uksort() with a custom comparison function

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