这是webservice中的json数据,我需要按照最新排序2017..bla - 2015..bla -2014排序这类信息,也许排序值“4”或标题2015 blabla .... value在PHP脚本中,我该怎么办?
"2015-09-11 09:18:11.023151": {
"1": "4422",
"2": "asd",
"3": "aaa",
"4": "2015-09-11 09:18:11.023151"
},
"2014-10-29 13:33:14.325827": {
"1": "5852",
"2": "shfe",
"3": "sds",
"4": "2014-10-29 13:33:14.325827"
},
"2017-11-10 09:18:11.315102": {
"1": "2323",
"2": "sfd",
"3": "sdf",
"4": "2017-11-10 09:18:11.315102"
}
我试试:
$example= json_decode($result, true);
usort($example, function($a, $b) {
return $a->{"4"} > $b->{"4"} ? -1 : 1; });
echo json_encode($example);
我们怎么做?
答案 0 :(得分:1)
请试试这个。
$result = '{"2015-09-11 09:18:11.023151":{"1":"4422","2":"asd","3":"aaa","4":"2015-09-11 09:18:11.023151"},"2014-10-29 13:33:14.325827":{"1":"5852","2":"shfe","3":"sds","4":"2014-10-29 13:33:14.325827"},"2017-11-10 09:18:11.315102":{"1":"2323","2":"sfd","3":"sdf","4":"2017-11-10 09:18:11.315102"}}';
$example= json_decode($result, true);
usort($example, function($a, $b) { return $a["4"] > $b["4"] ? -1 : 1; });
echo json_encode($example);
答案 1 :(得分:0)
我想我已经解决了你的问题。我开始将json转换为像你一样的数组
$array = json_decode($json, true);
接下来而不是使用usort()
我使用asort()
。
Asort将您的数组从高到低排序,并按日期(在我的情况下)工作
http://php.net/manual/en/function.asort.php
这是你的意思吗?