鍍金池/ 問答/PHP/ php array_multisort 函數(shù)問題

php array_multisort 函數(shù)問題

使用array_multisort 排序失敗
一開始的數(shù)據(jù)格式如下

[
    {
        "id":"486",
        "time":"1517310441",
        "content":"",
        "thumb":[
            {
                "url":"https://123win.oss-cn-shenzhen.aliyuncs.com//upload/IMG_6598.JPG"
            },
            {
                "url":"https://123win.oss-cn-shenzhen.aliyuncs.com//upload/IMG_6535.JPG"
            },
            {
                "url":"https://123win.oss-cn-shenzhen.aliyuncs.com//upload/IMG_6534.JPG"
            }
        ],
        "nickname":"咸魚",
        "headimgurl":"https://123win.oss-cn-shenzhen.aliyuncs.com//upload/p-7a6ec679.jpg",
        "uid":"10668",
        "like":"2",
        "rew":0,
        "smit":0,
        "type":3
    },
    {
        "comments":"是呀是呀",
        "surface_plot":"http://123win.oss-cn-shenzhen.aliyuncs.com/uploads/v2-f8762db5c97f88974b9f7269442ee781_b.gif",
        "title":"文章標題1",
        "time":"1521535223",
        "id":"3"
    },
    {
        "comments":"duiduidui",
        "surface_plot":"http://123win.oss-cn-shenzhen.aliyuncs.com/uploads/v2-f8762db5c97f88974b9f7269442ee781_b.gif",
        "title":"文章標題1",
        "time":"1521617478",
        "id":"4"
    },
    {
        "content":"最愛礦石奇景,歷史建筑中溫暖的家,蘊含著數(shù)代領(lǐng)袖氣息和智慧結(jié)晶。",
        "id":"481",
        "time":"1516091055",
        "ccl_rew":"你",
        "thumb":"https://123win.oss-cn-shenzhen.aliyuncs.com//upload/magazine-unlock-01-2.3.857-_8047bbc2f69c43cc810025a0c9653799.jpg,https://123win.oss-cn-shenzhen.aliyuncs.com//upload/magazine-unlock-01-2.3.857-_c6d51889122a471db51cae62dbfa7ce7.jpg,https://123win.oss-cn-shenzhen.aliyuncs.com//upload/magazine-unlock-05-2.3.860-_ee7abc1760c248898dbc49781645eec2.jpg"
    }
]

使用下標time 進行排序
[

"1517310441",
"1516091055",
"1521535223",
"1521617478"

]

array_multisort($time,SORT_DESC,SORT_NUMERIC,$res)

最后輸出結(jié)果
[

{
    "content":"最愛礦石奇景,歷史建筑中溫暖的家,蘊含著數(shù)代領(lǐng)袖氣息和智慧結(jié)晶。",
    "id":"481",
    "time":"1516091055",
    "ccl_rew":"你",
    "thumb":"https://123win.oss-cn-shenzhen.aliyuncs.com//upload/magazine-unlock-01-2.3.857-_8047bbc2f69c43cc810025a0c9653799.jpg,https://123win.oss-cn-shenzhen.aliyuncs.com//upload/magazine-unlock-01-2.3.857-_c6d51889122a471db51cae62dbfa7ce7.jpg,https://123win.oss-cn-shenzhen.aliyuncs.com//upload/magazine-unlock-05-2.3.860-_ee7abc1760c248898dbc49781645eec2.jpg"
},
{
    "comments":"duiduidui",
    "surface_plot":"http://123win.oss-cn-shenzhen.aliyuncs.com/uploads/v2-f8762db5c97f88974b9f7269442ee781_b.gif",
    "title":"文章標題1",
    "time":"1521617478",
    "id":"4"
},
{
    "id":"486",
    "time":"1517310441",
    "content":"",
    "thumb":[
        {
            "url":"https://123win.oss-cn-shenzhen.aliyuncs.com//upload/IMG_6598.JPG"
        },
        {
            "url":"https://123win.oss-cn-shenzhen.aliyuncs.com//upload/IMG_6535.JPG"
        },
        {
            "url":"https://123win.oss-cn-shenzhen.aliyuncs.com//upload/IMG_6534.JPG"
        }
    ],
    "nickname":"咸魚",
    "headimgurl":"https://123win.oss-cn-shenzhen.aliyuncs.com//upload/p-7a6ec679.jpg",
    "uid":"10668",
    "like":"2",
    "rew":0,
    "smit":0,
    "type":3
},
{
    "comments":"是呀是呀",
    "surface_plot":"http://123win.oss-cn-shenzhen.aliyuncs.com/uploads/v2-f8762db5c97f88974b9f7269442ee781_b.gif",
    "title":"文章標題1",
    "time":"1521535223",
    "id":"3"
}

]

依然沒有排序成功,請問是哪里出錯了嗎

回答
編輯回答
久愛她
\array_multisort(\array_column($res, 'time'), SORT_DESC, $res);
2017年4月24日 04:40