douhuike3199 2016-09-18 07:39
浏览 41
已采纳

按数组值排序多维数组

So I'm developing a message system for a project I'm working on and I want to organize an array of conversations by the latest message datetime.

Here's my array:

Array(
    [0] = Array (
        [ID] => 1,
        [USER] => 1,
        [AUTHOR] => 2,
        [TITLE] => Welcome to the Site!,
        [DATETIME] => 2016-09-12 20:41:16,
        [MESSAGES] => Array (
            [0] => Array (
                [ID] => 1,
                [CONVERSATION] => 1,
                [USER] => 1,
                [CONTENT] => Welcome to the site User!,
                [DATETIME] => 2016-09-13 00:19:20
                )
            [1] => Array (
                [ID] => 2,
                [CONVERSATION] => 1,
                [USER] => 2,
                [CONTENT] => Thanks for welcoming me!,
                [DATETIME] => 2016-09-13 00:27:54
                )
        )
    [1] = Array (
        [ID] => 2,
        [USER] => 2,
        [AUTHOR] => 1,
        [TITLE] => Hello World!,
        [DATETIME] => 2016-09-13 00:29:59,
        [MESSAGES] => Array (
            [0] => Array (
                [ID] => 1,
                [CONVERSATION] => 1,
                [USER] => 1,
                [CONTENT] => This is a test post.,
                [DATETIME] => 2016-09-13 00:19:45
                )
            [1] => Array (
                [ID] => 2,
                [CONVERSATION] => 1,
                [USER] => 2,
                [CONTENT] => This is an example response.,
                [DATETIME] => 2016-09-13 00:45:04
                )
        )
)

What I want to do is organise the array of conversations using the most recent message's datetime so the conversation with the most recent message will be first, the conversation with the second most recent message will be second and so on. I've been looking at different functions like

array_multisort
array_sort
usort

I've found other solutions online but they don't quite match what I'm looking for so does anyone know the best way to organize these chat messages?

  • 写回答

1条回答 默认 最新

  • doq1969 2016-09-24 05:46
    关注

    Okay so after ages of searching other posts similar to mine and testing and modifying code I found the answer to my solution:

    $datetimes = array();
    $recentDate = 0;
    foreach($conversations as $conversation) {
        foreach($conversation["MESSAGES"] as $message) {
            $curDate = strtotime($message["DATETIME"]);
            if($curDate > $recentDate) {
                $recentDate = $curDate;
            }
        }
        $datetimes[] = $recentDate;
    }
    array_multisort($datetimes, SORT_DESC, $conversations);
    

    This sorts each the conversations based off the conversations with the most recent message.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里