阅读(2414) (4)

Laravel 8 sortKeys() {#collection-method}

2021-07-01 15:42:06 更新

sortKeys 方法通过底层关联数组的键来对集合进行排序:

$collection = collect([
    'id' => 22345,
    'first' => 'John',
    'last' => 'Doe',
]);

$sorted = $collection->sortKeys();

$sorted->all();

/*
    [
        'first' => 'John',
        'id' => 22345,
        'last' => 'Doe',
    ]
*/