Laravel 8 flip() {#collection-method}
2021-07-19 09:37 更新
flip
方法将集合的键和对应的值进行互换:
$collection = collect(['name' => 'taylor', 'framework' => 'laravel']);
$flipped = $collection->flip();
$flipped->all();
// ['taylor' => 'name', 'laravel' => 'framework']
以上内容是否对您有帮助:
更多建议: