阅读(325) (4)

Laravel 8 flip() {#collection-method}

2021-07-01 14:46:22 更新

flip 方法将集合的键和对应的值进行互换:

$collection = collect(['name' => 'taylor', 'framework' => 'laravel']);

$flipped = $collection->flip();

$flipped->all();

// ['taylor' => 'name', 'laravel' => 'framework']