Laravel 8 sortKeys() {#collection-method}
2021-07-19 09:48 更新
sortKeys
方法通过底层关联数组的键来对集合进行排序:
$collection = collect([
'id' => 22345,
'first' => 'John',
'last' => 'Doe',
]);
$sorted = $collection->sortKeys();
$sorted->all();
/*
[
'first' => 'John',
'id' => 22345,
'last' => 'Doe',
]
*/
以上内容是否对您有帮助:
更多建议: