從v5.4.12開始,Laravel Collections現在包含一個when方法,讓您可以對專案執行條件操作,而不會中斷鏈。
推薦:laravel教學
像所有其他Laravel 集合方法,這一個可以有很多用例,選擇其中一個例子,想到的是能夠基於查詢字串參數進行過濾。
為了示範這個例子,讓我們假設我們有一個來自Laravel News Podcast的主機清單:
$hosts = [ ['name' => 'Eric Barnes', 'location' => 'USA', 'is_active' => 0], ['name' => 'Jack Fruh', 'location' => 'USA', 'is_active' => 0], ['name' => 'Jacob Bennett', 'location' => 'USA', 'is_active' => 1], ['name' => 'Michael Dyrynda', 'location' => 'AU', 'is_active' => 1], ];
舊版本要根據查詢字串進行過濾,您可能會這樣做:
$inUsa = collect($hosts)->where('location', 'USA'); if (request('retired')) { $inUsa = $inUsa->filter(function($employee){ return ! $employee['is_active']; }); }
使用新when方法,您現在可以在一個鍊式操作中執行此操作:
$inUsa = collect($hosts) ->where('location', 'USA') ->when(request('retired'), function($collection) { return $collection->reject(function($employee){ return $employee['is_active']; }); });
翻譯自laravel news,原文連結https://laravel-news.com/laravel-collections -when-method
以上是關於laravel5.4.12新增集合運算when方法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!