我在laravel中有以下集合:
Collection {#357 ▼
#items: array:11 [▼
"29-04-2016" => array:2 [▼
"posTotal" => "100"
"posCount" => 1
]
"05-05-2016" => array:6 [▼
"posTotal" => "11"
"posCount" => 1
"keyedTotal" => "120"
"keyedCount" => 1
"cashTotal" => "32"
"cashCount" => 2
]
"10-05-2016" => array:10 [▼
"posTotal" => "67"
"posCount" => 4
"keyedTotal" => "22"
"keyedCount" => 1
"cashcardTotal" => "123"
"cashcardCount" => 1
"refundTotal" => "-50"
"refundCount" => 1
"cashRefundTotal" => "-10"
"cashRefundCount" => 1
]
"17-05-2016" => array:2 [▶]
"06-05-2016" => array:2 [▶]
"16-05-2016" => array:2 [▶]
"22-04-2016" => array:2 [▶]
"25-04-2016" => array:2 [▶]
]
}
现在我想按索引对其进行排序,但需要按日期对其进行转换。
例如我想要展示
"17-05-2016" => array:2 [▶]
"10-05-2016" => array:10 [▶]
"06-05-2016" => array:2 [▶]
依旧......
我尝试了laravel的排序方法,并尝试了php的ksort函数将集合转换为数组。但它把它当作一个字符串。
答案 0 :(得分:1)
如果您使用数组,那么您可以使用带有回调函数的uksort()进行短路。你可以在里面写下自己的条件。
php代码:
// callback function
function cmp($a, $b){
if(strrev($a) == strrev($b)){
return 1;
}
return (strrev($a) < strrev($b)) ? -1 : 1;
}
// semple array
$test = array(
"05-06-2015" => "1",
"07-06-2016" => "3",
"05-08-2016" => "4",
"05-06-2016" => "2"
);
uksort( $test, "cmp" );
echo "<pre>";
print_r($test);
输出:
Array
(
[05-06-2015] => 1
[05-06-2016] => 2
[07-06-2016] => 3
[05-08-2016] => 4
)