Laravel 8 mapWithKeys() {#collection-method}

2021-07-19 09:41 更新

mapWithKeys 方法遍歷集合并將每個(gè)值傳入給定的回調(diào)函數(shù)。該回調(diào)函數(shù)將返回一個(gè)包含單個(gè)鍵 / 值對的關(guān)聯(lián)數(shù)組:

$collection = collect([
    [
        'name' => 'John',
        'department' => 'Sales',
        'email' => 'john@example.com',
    ],
    [
        'name' => 'Jane',
        'department' => 'Marketing',
        'email' => 'jane@example.com',
    ]
]);

$keyed = $collection->mapWithKeys(function ($item) {
    return [$item['email'] => $item['name']];
});

$keyed->all();

/*
    [
        'john@example.com' => 'John',
        'jane@example.com' => 'Jane',
    ]
*/
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號