集合
簡介
Illuminate\Support\Collection 類別提供了一個流暢、方便的包裝器來處理資料陣列。例如,看看下面的程式碼。我們將使用 collect 輔助函式從陣列建立一個新的集合實例,對每個元素執行 strtoupper 函式,然後移除所有空元素:
$collection = collect(['Taylor', 'Abigail', null])->map(function (?string $name) {
return strtoupper($name);
})->reject(function (string $name) {
return empty($name);
});
如你所見,Collection 類別允許你串聯其方法來對底層陣列執行流暢的映射與歸納。一般來說,集合是不可變的,這意味著每個 Collection 方法都會回傳一個全新的 Collection 實例。
建立集合
如上所述,collect 輔助函式會為給定的陣列回傳一個新的 Illuminate\Support\Collection 實例。因此,建立集合非常簡單:
$collection = collect([1, 2, 3]);
你也可以使用 make 和 fromJson 方法來建立集合。
[!NOTE] Eloquent 查詢的結果總是作為
Collection實例回傳。
擴充集合
集合是「可巨集化的 (macroable)」,這允許你在執行時向 Collection 類別加入其他方法。Illuminate\Support\Collection 類別的 macro 方法接受一個閉包,當呼叫你的巨集時將會執行該閉包。巨集閉包可以透過 $this 存取集合的其他方法,就像它是集合類別的真實方法一樣。例如,以下程式碼向 Collection 類別加入一個 toUpper 方法:
use Illuminate\Support\Collection;
use Illuminate\Support\Str;
Collection::macro('toUpper', function () {
return $this->map(function (string $value) {
return Str::upper($value);
});
});
$collection = collect(['first', 'second']);
$upper = $collection->toUpper();
// ['FIRST', 'SECOND']
通常,你應該在 服務供應器 的 boot 方法中宣告集合巨集。
巨集參數
如果需要,你可以定義接受額外參數的巨集:
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Lang;
Collection::macro('toLocale', function (string $locale) {
return $this->map(function (string $value) use ($locale) {
return Lang::get($value, [], $locale);
});
});
$collection = collect(['first', 'second']);
$translated = $collection->toLocale('es');
// ['primero', 'segundo'];
可用的方法
在接下來的大部分集合文件中,我們將討論 Collection 類別上可用的每個方法。請記住,所有這些方法都可以串聯起來以流暢地操作底層陣列。此外,幾乎每個方法都會回傳一個新的 Collection 實例,這讓你在必要時可以保留集合的原始副本:
after all average avg before chunk chunkWhile collapse collapseWithKeys collect combine concat contains containsStrict count countBy crossJoin dd diff diffAssoc diffAssocUsing diffKeys doesntContain doesntContainStrict dot dump duplicates duplicatesStrict each eachSpread ensure every except filter first firstOrFail firstWhere flatMap flatten flip forget forPage fromJson get groupBy has hasAny hasMany hasSole implode intersect intersectUsing intersectAssoc intersectAssocUsing intersectByKeys isEmpty isNotEmpty join keyBy keys last lazy macro make map mapInto mapSpread mapToGroups mapWithKeys max median merge mergeRecursive min mode multiply nth only pad partition percentage pipe pipeInto pipeThrough pluck pop prepend pull push put random range reduce reduceSpread reject replace replaceRecursive reverse search select shift shuffle skip skipUntil skipWhile slice sliding sole some sort sortBy sortByDesc sortDesc sortKeys sortKeysDesc sortKeysUsing splice split splitIn sum take takeUntil takeWhile tap times toArray toJson toPrettyJson transform undot union unique uniqueStrict unless unlessEmpty unlessNotEmpty unwrap value values when whenEmpty whenNotEmpty where whereStrict whereBetween whereIn whereInStrict whereInstanceOf whereNotBetween whereNotIn whereNotInStrict whereNotNull whereNull wrap zip
方法列表
after()
after 方法回傳給定項目之後的項目。如果找不到給定項目或它是最後一個項目,則回傳 null:
$collection = collect([1, 2, 3, 4, 5]);
$collection->after(3);
// 4
$collection->after(5);
// null
這個方法使用「寬鬆」比較來搜尋給定項目,這意味著包含整數值的字串將被視為等於相同值的整數。要使用「嚴格」比較,你可以向該方法提供 strict 參數:
collect([2, 4, 6, 8])->after('4', strict: true);
// null
或者,你可以提供自己的閉包來搜尋第一個通過給定真值測試的項目:
collect([2, 4, 6, 8])->after(function (int $item, int $key) {
return $item > 5;
});
// 8
all()
all 方法回傳集合所表示的底層陣列:
collect([1, 2, 3])->all();
// [1, 2, 3]
average()
avg 方法的別名。
avg()
avg 方法回傳給定鍵的平均值:
$average = collect([
['foo' => 10],
['foo' => 10],
['foo' => 20],
['foo' => 40]
])->avg('foo');
// 20
$average = collect([1, 1, 2, 4])->avg();
// 2
before()
before 方法與 after 方法相反。它回傳給定項目之前的項目。如果找不到給定項目或它是第一個項目,則回傳 null:
$collection = collect([1, 2, 3, 4, 5]);
$collection->before(3);
// 2
$collection->before(1);
// null
collect([2, 4, 6, 8])->before('4', strict: true);
// null
collect([2, 4, 6, 8])->before(function (int $item, int $key) {
return $item > 5;
});
// 4
chunk()
chunk 方法將集合分成多個給定大小的較小集合:
$collection = collect([1, 2, 3, 4, 5, 6, 7]);
$chunks = $collection->chunk(4);
$chunks->all();
// [[1, 2, 3, 4], [5, 6, 7]]
當在 視圖 中使用像 Bootstrap 這樣的網格系統時,這個方法特別有用。例如,想像你有一個 Eloquent 模型集合想要在網格中顯示:
@foreach ($products->chunk(3) as $chunk)
<div class="row">
@foreach ($chunk as $product)
<div class="col-xs-4">{{ $product->name }}</div>
@endforeach
</div>
@endforeach
chunkWhile()
chunkWhile 方法根據給定回呼的評估結果,將集合分成多個較小的集合。傳遞給閉包的 $chunk 變數可用於檢查前一個元素:
$collection = collect(str_split('AABBCCCD'));
$chunks = $collection->chunkWhile(function (string $value, int $key, Collection $chunk) {
return $value === $chunk->last();
});
$chunks->all();
// [['A', 'A'], ['B', 'B'], ['C', 'C', 'C'], ['D']]
collapse()
collapse 方法將陣列的集合或集合的集合折疊成單一個平面集合:
$collection = collect([
[1, 2, 3],
[4, 5, 6],
[7, 8, 9],
]);
$collapsed = $collection->collapse();
$collapsed->all();
// [1, 2, 3, 4, 5, 6, 7, 8, 9]
collapseWithKeys()
collapseWithKeys 方法將陣列的集合或集合的集合攤平為單一集合,並保持原始鍵完好無損。如果集合已經攤平,它將回傳一個空集合:
$collection = collect([
['first' => collect([1, 2, 3])],
['second' => [4, 5, 6]],
['third' => collect([7, 8, 9])]
]);
$collapsed = $collection->collapseWithKeys();
$collapsed->all();
// [
// 'first' => [1, 2, 3],
// 'second' => [4, 5, 6],
// 'third' => [7, 8, 9],
// ]
collect()
collect 方法回傳一個新的 Collection 實例,其中包含目前在集合中的項目:
$collectionA = collect([1, 2, 3]);
$collectionB = $collectionA->collect();
$collectionB->all();
// [1, 2, 3]
collect 方法主要用於將 延遲集合 轉換為標準的 Collection 實例:
$lazyCollection = LazyCollection::make(function () {
yield 1;
yield 2;
yield 3;
});
$collection = $lazyCollection->collect();
$collection::class;
// 'Illuminate\Support\Collection'
$collection->all();
// [1, 2, 3]
[!NOTE] 當你有一個
Enumerable實例並需要一個非延遲的集合實例時,collect方法特別有用。由於collect()是Enumerable契約的一部分,你可以安全地使用它來獲取Collection實例。
combine()
combine 方法將集合的值(作為鍵)與另一個陣列或集合的值結合:
$collection = collect(['name', 'age']);
$combined = $collection->combine(['George', 29]);
$combined->all();
// ['name' => 'George', 'age' => 29]
concat()
concat 方法將給定陣列或集合的值附加到另一個集合的末端:
$collection = collect(['John Doe']);
$concatenated = $collection->concat(['Jane Doe'])->concat(['name' => 'Johnny Doe']);
$concatenated->all();
// ['John Doe', 'Jane Doe', 'Johnny Doe']
concat 方法會為附加到原始集合的項目按數字重新索引鍵。要保留關聯集合中的鍵,請參閱 merge 方法。
contains()
contains 方法判斷集合是否包含給定項目。你可以傳遞一個閉包給 contains 方法來判斷集合中是否存在符合給定真值測試的元素:
$collection = collect([1, 2, 3, 4, 5]);
$collection->contains(function (int $value, int $key) {
return $value > 5;
});
// false
或者,你可以傳遞一個字串給 contains 方法,來判斷集合是否包含給定的項目值:
$collection = collect(['name' => 'Desk', 'price' => 100]);
$collection->contains('Desk');
// true
$collection->contains('New York');
// false
你也可以傳遞一個鍵 / 值對給 contains 方法,這將判斷給定的鍵值對是否存在於集合中:
$collection = collect([
['product' => 'Desk', 'price' => 200],
['product' => 'Chair', 'price' => 100],
]);
$collection->contains('product', 'Bookcase');
// false
contains 方法在檢查項目值時使用「寬鬆」比較,這意味著具有整數值的字串將被視為等於相同值的整數。使用 containsStrict 方法可使用「嚴格」比較進行過濾。
要取得 contains 的相反結果,請參閱 doesntContain 方法。
containsStrict()
此方法的簽章與 contains 方法相同;然而,所有的值都是使用「嚴格」比較來進行比較。
[!NOTE] 當使用 Eloquent 集合 時,此方法的行為會被修改。
count()
count 方法回傳集合中的總項目數:
$collection = collect([1, 2, 3, 4]);
$collection->count();
// 4
countBy()
countBy 方法計算集合中值的出現次數。預設情況下,該方法計算每個元素的出現次數,允許你計算集合中某些「類型」的元素:
$collection = collect([1, 2, 2, 2, 3]);
$counted = $collection->countBy();
$counted->all();
// [1 => 1, 2 => 3, 3 => 1]
你可以傳遞一個閉包給 countBy 方法來以自訂值計算所有項目:
$collection = collect(['alice@gmail.com', 'bob@yahoo.com', 'carlos@gmail.com']);
$counted = $collection->countBy(function (string $email) {
return substr(strrchr($email, '@'), 1);
});
$counted->all();
// ['gmail.com' => 2, 'yahoo.com' => 1]
crossJoin()
crossJoin 方法在給定陣列或集合之間對集合的值進行交叉連接,回傳包含所有可能排列的笛卡兒積:
$collection = collect([1, 2]);
$matrix = $collection->crossJoin(['a', 'b']);
$matrix->all();
/*
[
[1, 'a'],
[1, 'b'],
[2, 'a'],
[2, 'b'],
]
*/
$collection = collect([1, 2]);
$matrix = $collection->crossJoin(['a', 'b'], ['I', 'II']);
$matrix->all();
/*
[
[1, 'a', 'I'],
[1, 'a', 'II'],
[1, 'b', 'I'],
[1, 'b', 'II'],
[2, 'a', 'I'],
[2, 'a', 'II'],
[2, 'b', 'I'],
[2, 'b', 'II'],
]
*/
dd()
dd 方法印出集合的項目並結束腳本執行:
$collection = collect(['John Doe', 'Jane Doe']);
$collection->dd();
/*
array:2 [
0 => "John Doe"
1 => "Jane Doe"
]
*/
如果你不想停止執行腳本,請改用 dump 方法。
diff()
diff 方法根據其值將集合與另一個集合或純 PHP array 進行比較。這個方法會回傳原始集合中存在但不在給定集合中的值:
$collection = collect([1, 2, 3, 4, 5]);
$diff = $collection->diff([2, 4, 6, 8]);
$diff->all();
// [1, 3, 5]
[!NOTE] 當使用 Eloquent 集合 時,此方法的行為會被修改。
diffAssoc()
diffAssoc 方法根據其鍵和值將集合與另一個集合或純 PHP array 進行比較。這個方法會回傳原始集合中存在但不在給定集合中的鍵 / 值對:
$collection = collect([
'color' => 'orange',
'type' => 'fruit',
'remain' => 6,
]);
$diff = $collection->diffAssoc([
'color' => 'yellow',
'type' => 'fruit',
'remain' => 3,
'used' => 6,
]);
$diff->all();
// ['color' => 'orange', 'remain' => 6]
diffAssocUsing()
與 diffAssoc 不同,diffAssocUsing 接受一個使用者提供的回呼函式來進行索引比較:
$collection = collect([
'color' => 'orange',
'type' => 'fruit',
'remain' => 6,
]);
$diff = $collection->diffAssocUsing([
'Color' => 'yellow',
'Type' => 'fruit',
'Remain' => 3,
], 'strnatcasecmp');
$diff->all();
// ['color' => 'orange', 'remain' => 6]
該回呼必須是一個回傳小於、等於或大於零之整數的比較函式。更多資訊請參閱 PHP 關於 array_diff_uassoc 的文件,這是 diffAssocUsing 方法內部利用的 PHP 函式。
diffKeys()
diffKeys 方法根據其鍵將集合與另一個集合或純 PHP array 進行比較。這個方法會回傳原始集合中存在但不在給定集合中的鍵 / 值對:
$collection = collect([
'one' => 10,
'two' => 20,
'three' => 30,
'four' => 40,
'five' => 50,
]);
$diff = $collection->diffKeys([
'two' => 2,
'four' => 4,
'six' => 6,
'eight' => 8,
]);
$diff->all();
// ['one' => 10, 'three' => 30, 'five' => 50]
doesntContain()
doesntContain 方法判斷集合是否不包含給定項目。你可以傳遞一個閉包給 doesntContain 方法,來判斷集合中是否不存在符合給定真值測試的元素:
$collection = collect([1, 2, 3, 4, 5]);
$collection->doesntContain(function (int $value, int $key) {
return $value < 5;
});
// false
或者,你可以傳遞一個字串給 doesntContain 方法,來判斷集合是否不包含給定的項目值:
$collection = collect(['name' => 'Desk', 'price' => 100]);
$collection->doesntContain('Table');
// true
$collection->doesntContain('Desk');
// false
你也可以傳遞一個鍵 / 值對給 doesntContain 方法,這將判斷給定的鍵值對是否不存在於集合中:
$collection = collect([
['product' => 'Desk', 'price' => 200],
['product' => 'Chair', 'price' => 100],
]);
$collection->doesntContain('product', 'Bookcase');
// true
doesntContain 方法在檢查項目值時使用「寬鬆」比較,這意味著具有整數值的字串將被視為等於相同值的整數。
doesntContainStrict()
此方法的簽章與 doesntContain 方法相同;然而,所有的值都是使用「嚴格」比較來進行比較。
dot()
dot 方法將多維集合攤平為使用「點」表示法指示深度的單層集合:
$collection = collect(['products' => ['desk' => ['price' => 100]]]);
$flattened = $collection->dot();
$flattened->all();
// ['products.desk.price' => 100]
dump()
dump 方法印出集合的項目:
$collection = collect(['John Doe', 'Jane Doe']);
$collection->dump();
/*
array:2 [
0 => "John Doe"
1 => "Jane Doe"
]
*/
如果你想在印出集合後停止執行腳本,請改用 dd 方法。
duplicates()
duplicates 方法檢索並回傳集合中重複的值:
$collection = collect(['a', 'b', 'a', 'c', 'b']);
$collection->duplicates();
// [2 => 'a', 4 => 'b']
如果集合包含陣列或物件,你可以傳遞你希望檢查重複值的屬性鍵:
$employees = collect([
['email' => 'abigail@example.com', 'position' => 'Developer'],
['email' => 'james@example.com', 'position' => 'Designer'],
['email' => 'victoria@example.com', 'position' => 'Developer'],
]);
$employees->duplicates('position');
// [2 => 'Developer']
duplicatesStrict()
此方法的簽章與 duplicates 方法相同;然而,所有的值都是使用「嚴格」比較來進行比較。
each()
each 方法迭代集合中的項目,並將每個項目傳遞給閉包:
$collection = collect([1, 2, 3, 4]);
$collection->each(function (int $item, int $key) {
// ...
});
如果你想要停止迭代項目,你可以從閉包中回傳 false:
$collection->each(function (int $item, int $key) {
if (/* condition */) {
return false;
}
});
eachSpread()
eachSpread 方法迭代集合的項目,將每個巢狀項目值傳遞給給定的回呼:
$collection = collect([['John Doe', 35], ['Jane Doe', 33]]);
$collection->eachSpread(function (string $name, int $age) {
// ...
});
你可以藉由從回呼回傳 false 來停止迭代項目:
$collection->eachSpread(function (string $name, int $age) {
return false;
});
ensure()
ensure 方法可用來驗證集合的所有元素是否屬於給定的類型或類型列表。否則,將拋出 UnexpectedValueException:
return $collection->ensure(User::class);
return $collection->ensure([User::class, Customer::class]);
也可以指定原始類型,例如 string、int、float、bool 和 array:
return $collection->ensure('int');
[!WARNING]
ensure方法不保證稍後不會將不同類型的元素加到集合中。
every()
every 方法可用來驗證集合的所有元素是否通過給定的真值測試:
collect([1, 2, 3, 4])->every(function (int $value, int $key) {
return $value > 2;
});
// false
如果集合是空的,every 方法將回傳 true:
$collection = collect([]);
$collection->every(function (int $value, int $key) {
return $value > 2;
});
// true
except()
except 方法回傳集合中除了具有指定鍵之外的所有項目:
$collection = collect(['product_id' => 1, 'price' => 100, 'discount' => false]);
$filtered = $collection->except(['price', 'discount']);
$filtered->all();
// ['product_id' => 1]
對於 except 的相反操作,請參閱 only 方法。
[!NOTE] 當使用 Eloquent 集合 時,此方法的行為會被修改。
filter()
filter 方法使用給定的回呼來過濾集合,只保留那些通過給定真值測試的項目:
$collection = collect([1, 2, 3, 4]);
$filtered = $collection->filter(function (int $value, int $key) {
return $value > 2;
});
$filtered->all();
// [3, 4]
如果沒有提供回呼,所有等同於 false 的集合條目將被移除:
$collection = collect([1, 2, 3, null, false, '', 0, []]);
$collection->filter()->all();
// [1, 2, 3]
對於 filter 的相反操作,請參閱 reject 方法。
first()
first 方法回傳集合中第一個通過給定真值測試的元素:
collect([1, 2, 3, 4])->first(function (int $value, int $key) {
return $value > 2;
});
// 3
你也可以在沒有參數的情況下呼叫 first 方法,以取得集合中的第一個元素。如果集合是空的,則回傳 null:
collect([1, 2, 3, 4])->first();
// 1
firstOrFail()
firstOrFail 方法與 first 方法相同;然而,如果找不到結果,則會拋出 Illuminate\Support\ItemNotFoundException 例外:
collect([1, 2, 3, 4])->firstOrFail(function (int $value, int $key) {
return $value > 5;
});
// Throws ItemNotFoundException...
你也可以在沒有參數的情況下呼叫 firstOrFail 方法,以取得集合中的第一個元素。如果集合是空的,將拋出 Illuminate\Support\ItemNotFoundException 例外:
collect([])->firstOrFail();
// Throws ItemNotFoundException...
firstWhere()
firstWhere 方法回傳集合中具有給定鍵 / 值對的第一個元素:
$collection = collect([
['name' => 'Regena', 'age' => null],
['name' => 'Linda', 'age' => 14],
['name' => 'Diego', 'age' => 23],
['name' => 'Linda', 'age' => 84],
]);
$collection->firstWhere('name', 'Linda');
// ['name' => 'Linda', 'age' => 14]
你也可以使用比較運算子呼叫 firstWhere 方法:
$collection->firstWhere('age', '>=', 18);
// ['name' => 'Diego', 'age' => 23]
就像 where 方法一樣,你可以傳遞一個參數給 firstWhere 方法。在這種情況下,firstWhere 方法將回傳給定項目鍵的值為「真值 (truthy)」的第一個項目:
$collection->firstWhere('age');
// ['name' => 'Linda', 'age' => 14]
flatMap()
flatMap 方法迭代集合,並將每個值傳遞給給定的閉包。閉包可以自由修改項目並回傳它,從而形成一個修改後項目的新集合。然後,陣列被攤平一層:
$collection = collect([
['name' => 'Sally'],
['school' => 'Arkansas'],
['age' => 28]
]);
$flattened = $collection->flatMap(function (array $values) {
return array_map('strtoupper', $values);
});
$flattened->all();
// ['name' => 'SALLY', 'school' => 'ARKANSAS', 'age' => '28'];
flatten()
flatten 方法將多維集合攤平為單維度:
$collection = collect([
'name' => 'Taylor',
'languages' => [
'PHP', 'JavaScript'
]
]);
$flattened = $collection->flatten();
$flattened->all();
// ['Taylor', 'PHP', 'JavaScript'];
如果需要,你可以傳遞「深度」參數給 flatten 方法:
$collection = collect([
'Apple' => [
[
'name' => 'iPhone 6S',
'brand' => 'Apple'
],
],
'Samsung' => [
[
'name' => 'Galaxy S7',
'brand' => 'Samsung'
],
],
]);
$products = $collection->flatten(1);
$products->values()->all();
/*
[
['name' => 'iPhone 6S', 'brand' => 'Apple'],
['name' => 'Galaxy S7', 'brand' => 'Samsung'],
]
*/
在這個範例中,不提供深度呼叫 flatten 也會攤平巢狀陣列,產生 ['iPhone 6S', 'Apple', 'Galaxy S7', 'Samsung']。提供深度允許你指定巢狀陣列將被攤平的層數。
flip()
flip 方法將集合的鍵與其對應的值交換:
$collection = collect(['name' => 'Taylor', 'framework' => 'Laravel']);
$flipped = $collection->flip();
$flipped->all();
// ['Taylor' => 'name', 'Laravel' => 'framework']
forget()
forget 方法透過其鍵從集合中移除一個項目:
$collection = collect(['name' => 'Taylor', 'framework' => 'Laravel']);
// 忘記單一鍵...
$collection->forget('name');
// ['framework' => 'Laravel']
// 忘記多個鍵...
$collection->forget(['name', 'framework']);
// []
[!WARNING] 與大多數其他集合方法不同,
forget不會回傳一個新修改的集合;它修改並回傳被呼叫的集合。
forPage()
forPage 方法回傳一個包含給定頁數上存在項目的新集合。該方法接受頁碼作為其第一個參數,每頁顯示的項目數作為其第二個參數:
$collection = collect([1, 2, 3, 4, 5, 6, 7, 8, 9]);
$chunk = $collection->forPage(2, 3);
$chunk->all();
// [4, 5, 6]
fromJson()
靜態的 fromJson 方法透過使用 json_decode PHP 函式解碼給定的 JSON 字串來建立新的集合實例:
use Illuminate\Support\Collection;
$json = json_encode([
'name' => 'Taylor Otwell',
'role' => 'Developer',
'status' => 'Active',
]);
$collection = Collection::fromJson($json);
get()
get 方法回傳給定鍵的項目。如果該鍵不存在,則回傳 null:
$collection = collect(['name' => 'Taylor', 'framework' => 'Laravel']);
$value = $collection->get('name');
// Taylor
你可以選擇性地傳遞一個預設值作為第二個參數:
$collection = collect(['name' => 'Taylor', 'framework' => 'Laravel']);
$value = $collection->get('age', 34);
// 34
你甚至可以傳遞一個回呼作為方法的預設值。如果指定的鍵不存在,將回傳回呼的結果:
$collection->get('email', function () {
return 'taylor@example.com';
});
// taylor@example.com
groupBy()
groupBy 方法依給定鍵將集合的項目分組:
$collection = collect([
['account_id' => 'account-x10', 'product' => 'Chair'],
['account_id' => 'account-x10', 'product' => 'Bookcase'],
['account_id' => 'account-x11', 'product' => 'Desk'],
]);
$grouped = $collection->groupBy('account_id');
$grouped->all();
/*
[
'account-x10' => [
['account_id' => 'account-x10', 'product' => 'Chair'],
['account_id' => 'account-x10', 'product' => 'Bookcase'],
],
'account-x11' => [
['account_id' => 'account-x11', 'product' => 'Desk'],
],
]
*/
你可以傳遞一個回呼,而不是傳遞字串 key。回呼應該回傳你希望群組的鍵值:
$grouped = $collection->groupBy(function (array $item, int $key) {
return substr($item['account_id'], -3);
});
$grouped->all();
/*
[
'x10' => [
['account_id' => 'account-x10', 'product' => 'Chair'],
['account_id' => 'account-x10', 'product' => 'Bookcase'],
],
'x11' => [
['account_id' => 'account-x11', 'product' => 'Desk'],
],
]
*/
多個分組條件可以作為陣列傳遞。每個陣列元素將應用於多維陣列內部的對應層級:
$data = new Collection([
10 => ['user' => 1, 'skill' => 1, 'roles' => ['Role_1', 'Role_3']],
20 => ['user' => 2, 'skill' => 1, 'roles' => ['Role_1', 'Role_2']],
30 => ['user' => 3, 'skill' => 2, 'roles' => ['Role_1']],
40 => ['user' => 4, 'skill' => 2, 'roles' => ['Role_2']],
]);
$result = $data->groupBy(['skill', function (array $item) {
return $item['roles'];
}], preserveKeys: true);
/*
[
1 => [
'Role_1' => [
10 => ['user' => 1, 'skill' => 1, 'roles' => ['Role_1', 'Role_3']],
20 => ['user' => 2, 'skill' => 1, 'roles' => ['Role_1', 'Role_2']],
],
'Role_2' => [
20 => ['user' => 2, 'skill' => 1, 'roles' => ['Role_1', 'Role_2']],
],
'Role_3' => [
10 => ['user' => 1, 'skill' => 1, 'roles' => ['Role_1', 'Role_3']],
],
],
2 => [
'Role_1' => [
30 => ['user' => 3, 'skill' => 2, 'roles' => ['Role_1']],
],
'Role_2' => [
40 => ['user' => 4, 'skill' => 2, 'roles' => ['Role_2']],
],
],
];
*/
has()
has 方法判斷給定鍵是否存在於集合中:
$collection = collect(['account_id' => 1, 'product' => 'Desk', 'amount' => 5]);
$collection->has('product');
// true
$collection->has(['product', 'amount']);
// true
$collection->has(['amount', 'price']);
// false
hasAny()
hasAny 方法判斷給定鍵中是否有任何一個存在於集合中:
$collection = collect(['account_id' => 1, 'product' => 'Desk', 'amount' => 5]);
$collection->hasAny(['product', 'price']);
// true
$collection->hasAny(['name', 'price']);
// false
hasMany()
hasMany 方法判斷集合是否包含多個項目:
collect([])->hasMany();
// false
collect(['1'])->hasMany();
// false
collect([1, 2, 3])->hasMany();
// true
collect([
['age' => 2],
['age' => 3],
])->hasMany(fn ($item) => $item['age'] === 2)
// false
hasSole()
hasSole 方法判斷集合是否包含單一個項目,選擇性地匹配給定條件:
collect([])->hasSole();
// false
collect(['1'])->hasSole();
// true
collect([1, 2, 3])->hasSole(fn (int $item) => $item === 2);
// true
implode()
implode 方法合併集合中的項目。其參數取決於集合中項目的類型。如果集合包含陣列或物件,你應該傳遞希望合併的屬性鍵,以及希望放置在值之間的「黏合」字串:
$collection = collect([
['account_id' => 1, 'product' => 'Desk'],
['account_id' => 2, 'product' => 'Chair'],
]);
$collection->implode('product', ', ');
// 'Desk, Chair'
如果集合包含簡單的字串或數值,你應該只傳遞「黏合劑」作為方法的唯一參數:
collect([1, 2, 3, 4, 5])->implode('-');
// '1-2-3-4-5'
如果你想格式化正在被合併的值,你可以傳遞一個閉包給 implode 方法:
$collection->implode(function (array $item, int $key) {
return strtoupper($item['product']);
}, ', ');
// 'DESK, CHAIR'
intersect()
intersect 方法從原始集合中移除給定陣列或集合中不存在的任何值。產生之集合將保留原始集合的鍵:
$collection = collect(['Desk', 'Sofa', 'Chair']);
$intersect = $collection->intersect(['Desk', 'Chair', 'Bookcase']);
$intersect->all();
// [0 => 'Desk', 2 => 'Chair']
[!NOTE] 當使用 Eloquent 集合 時,此方法的行為會被修改。
intersectUsing()
intersectUsing 方法從原始集合中移除給定陣列或集合中不存在的任何值,並使用自訂回呼來比較這些值。產生之集合將保留原始集合的鍵:
$collection = collect(['Desk', 'Sofa', 'Chair']);
$intersect = $collection->intersectUsing(['desk', 'chair', 'bookcase'], function (string $a, string $b) {
return strcasecmp($a, $b);
});
$intersect->all();
// [0 => 'Desk', 2 => 'Chair']
intersectAssoc()
intersectAssoc 方法將原始集合與另一個集合或陣列進行比較,回傳所有給定集合中皆存在的鍵 / 值對:
$collection = collect([
'color' => 'red',
'size' => 'M',
'material' => 'cotton'
]);
$intersect = $collection->intersectAssoc([
'color' => 'blue',
'size' => 'M',
'material' => 'polyester'
]);
$intersect->all();
// ['size' => 'M']
intersectAssocUsing()
intersectAssocUsing 方法將原始集合與另一個集合或陣列進行比較,回傳兩者中皆存在的鍵 / 值對,使用自訂的比較回呼來決定鍵和值的相等性:
$collection = collect([
'color' => 'red',
'Size' => 'M',
'material' => 'cotton',
]);
$intersect = $collection->intersectAssocUsing([
'color' => 'blue',
'size' => 'M',
'material' => 'polyester',
], function (string $a, string $b) {
return strcasecmp($a, $b);
});
$intersect->all();
// ['Size' => 'M']
intersectByKeys()
intersectByKeys 方法從原始集合中移除在給定陣列或集合中不存在的任何鍵及其對應值:
$collection = collect([
'serial' => 'UX301', 'type' => 'screen', 'year' => 2009,
]);
$intersect = $collection->intersectByKeys([
'reference' => 'UX404', 'type' => 'tab', 'year' => 2011,
]);
$intersect->all();
// ['type' => 'screen', 'year' => 2009]
isEmpty()
如果集合為空,isEmpty 方法回傳 true;否則回傳 false:
collect([])->isEmpty();
// true
isNotEmpty()
如果集合不為空,isNotEmpty 方法回傳 true;否則回傳 false:
collect([])->isNotEmpty();
// false
join()
join 方法將集合的值與字串連接。使用該方法的第二個參數,你還可以指定最後一個元素應如何附加到字串:
collect(['a', 'b', 'c'])->join(', '); // 'a, b, c'
collect(['a', 'b', 'c'])->join(', ', ', and '); // 'a, b, and c'
collect(['a', 'b'])->join(', ', ' and '); // 'a and b'
collect(['a'])->join(', ', ' and '); // 'a'
collect([])->join(', ', ' and '); // ''
keyBy()
keyBy 方法透過給定鍵對集合進行鍵控。如果多個項目具有相同的鍵,則只有最後一個項目會出現在新的集合中:
$collection = collect([
['product_id' => 'prod-100', 'name' => 'Desk'],
['product_id' => 'prod-200', 'name' => 'Chair'],
]);
$keyed = $collection->keyBy('product_id');
$keyed->all();
/*
[
'prod-100' => ['product_id' => 'prod-100', 'name' => 'Desk'],
'prod-200' => ['product_id' => 'prod-200', 'name' => 'Chair'],
]
*/
你也可以傳遞一個回呼給此方法。回呼應該回傳用來作為集合鍵的值:
$keyed = $collection->keyBy(function (array $item, int $key) {
return strtoupper($item['product_id']);
});
$keyed->all();
/*
[
'PROD-100' => ['product_id' => 'prod-100', 'name' => 'Desk'],
'PROD-200' => ['product_id' => 'prod-200', 'name' => 'Chair'],
]
*/
keys()
keys 方法回傳所有集合的鍵:
$collection = collect([
'prod-100' => ['product_id' => 'prod-100', 'name' => 'Desk'],
'prod-200' => ['product_id' => 'prod-200', 'name' => 'Chair'],
]);
$keys = $collection->keys();
$keys->all();
// ['prod-100', 'prod-200']
last()
last 方法回傳集合中最後一個通過給定真值測試的元素:
collect([1, 2, 3, 4])->last(function (int $value, int $key) {
return $value < 3;
});
// 2
你也可以在沒有參數的情況下呼叫 last 方法,以取得集合中的最後一個元素。如果集合是空的,則回傳 null:
collect([1, 2, 3, 4])->last();
// 4
lazy()
lazy 方法從底層的項目陣列回傳一個新的 LazyCollection 實例:
$lazyCollection = collect([1, 2, 3, 4])->lazy();
$lazyCollection::class;
// Illuminate\Support\LazyCollection
$lazyCollection->all();
// [1, 2, 3, 4]
當你需要對包含許多項目的龐大 Collection 進行轉換時,這特別有用:
$count = $hugeCollection
->lazy()
->where('country', 'FR')
->where('balance', '>', '100')
->count();
藉由將集合轉換為 LazyCollection,我們避免了分配大量額外記憶體的需要。儘管原始集合仍然將 其 值保存在記憶體中,但後續的過濾器不會這樣做。因此,在過濾集合結果時,幾乎不會分配額外的記憶體。
macro()
靜態 macro 方法允許你在執行時向 Collection 類別加入方法。請參閱 擴充集合 文件以獲取更多資訊。
make()
靜態 make 方法建立一個新的集合實例。請參閱 建立集合 部分。
use Illuminate\Support\Collection;
$collection = Collection::make([1, 2, 3]);
map()
map 方法迭代集合,並將每個值傳遞給給定的回呼。回呼可以自由修改項目並回傳它,從而形成一個修改後項目的新集合:
$collection = collect([1, 2, 3, 4, 5]);
$multiplied = $collection->map(function (int $item, int $key) {
return $item * 2;
});
$multiplied->all();
// [2, 4, 6, 8, 10]
[!WARNING] 像大多數其他集合方法一樣,
map回傳一個新的集合實例;它不會修改被呼叫的集合。如果你想轉換原始集合,請使用 transform 方法。
mapInto()
mapInto() 方法迭代集合,藉由將值傳遞給建構子來建立給定類別的新實例:
class Currency
{
/**
* 建立一個新的貨幣實例。
*/
function __construct(
public string $code,
) {}
}
$collection = collect(['USD', 'EUR', 'GBP']);
$currencies = $collection->mapInto(Currency::class);
$currencies->all();
// [Currency('USD'), Currency('EUR'), Currency('GBP')]
mapSpread()
mapSpread 方法迭代集合的項目,將每個巢狀項目值傳遞給給定的閉包。閉包可以自由修改項目並回傳它,從而形成一個修改後項目的新集合:
$collection = collect([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]);
$chunks = $collection->chunk(2);
$sequence = $chunks->mapSpread(function (int $even, int $odd) {
return $even + $odd;
});
$sequence->all();
// [1, 5, 9, 13, 17]
mapToGroups()
mapToGroups 方法藉由給定的閉包對集合的項目進行分組。閉包應回傳包含單個鍵 / 值對的關聯陣列,從而形成一個分組值的新集合:
$collection = collect([
[
'name' => 'John Doe',
'department' => 'Sales',
],
[
'name' => 'Jane Doe',
'department' => 'Sales',
],
[
'name' => 'Johnny Doe',
'department' => 'Marketing',
]
]);
$grouped = $collection->mapToGroups(function (array $item, int $key) {
return [$item['department'] => $item['name']];
});
$grouped->all();
/*
[
'Sales' => ['John Doe', 'Jane Doe'],
'Marketing' => ['Johnny Doe'],
]
*/
$grouped->get('Sales')->all();
// ['John Doe', 'Jane Doe']
mapWithKeys()
mapWithKeys 方法迭代集合,並將每個值傳遞給給定的回呼。回呼應回傳包含單個鍵 / 值對的關聯陣列:
$collection = collect([
[
'name' => 'John',
'department' => 'Sales',
'email' => 'john@example.com',
],
[
'name' => 'Jane',
'department' => 'Marketing',
'email' => 'jane@example.com',
]
]);
$keyed = $collection->mapWithKeys(function (array $item, int $key) {
return [$item['email'] => $item['name']];
});
$keyed->all();
/*
[
'john@example.com' => 'John',
'jane@example.com' => 'Jane',
]
*/
max()
max 方法回傳給定鍵的最大值:
$max = collect([
['foo' => 10],
['foo' => 20]
])->max('foo');
// 20
$max = collect([1, 2, 3, 4, 5])->max();
// 5
median()
median 方法回傳給定鍵的中位數:
$median = collect([
['foo' => 10],
['foo' => 10],
['foo' => 20],
['foo' => 40]
])->median('foo');
// 15
$median = collect([1, 1, 2, 4])->median();
// 1.5
merge()
merge 方法將給定陣列或集合與原始集合合併。如果給定項目中的字串鍵與原始集合中的字串鍵相符,則給定項目的值將覆寫原始集合中的值:
$collection = collect(['product_id' => 1, 'price' => 100]);
$merged = $collection->merge(['price' => 200, 'discount' => false]);
$merged->all();
// ['product_id' => 1, 'price' => 200, 'discount' => false]
如果給定項目的鍵是數字,則值將附加到集合的末尾:
$collection = collect(['Desk', 'Chair']);
$merged = $collection->merge(['Bookcase', 'Door']);
$merged->all();
// ['Desk', 'Chair', 'Bookcase', 'Door']
mergeRecursive()
mergeRecursive 方法將給定陣列或集合與原始集合遞迴合併。如果給定項目中的字串鍵與原始集合中的字串鍵匹配,則將這些鍵的值合併到一個陣列中,這會遞迴完成:
$collection = collect(['product_id' => 1, 'price' => 100]);
$merged = $collection->mergeRecursive([
'product_id' => 2,
'price' => 200,
'discount' => false
]);
$merged->all();
// ['product_id' => [1, 2], 'price' => [100, 200], 'discount' => false]
min()
min 方法回傳給定鍵的最小值:
$min = collect([
['foo' => 10],
['foo' => 20]
])->min('foo');
// 10
$min = collect([1, 2, 3, 4, 5])->min();
// 1
mode()
mode 方法回傳給定鍵的眾數:
$mode = collect([
['foo' => 10],
['foo' => 10],
['foo' => 20],
['foo' => 40]
])->mode('foo');
// [10]
$mode = collect([1, 1, 2, 4])->mode();
// [1]
$mode = collect([1, 1, 2, 2])->mode();
// [1, 2]
multiply()
multiply 方法建立集合中所有項目的指定數量的副本:
$users = collect([
['name' => 'User #1', 'email' => 'user1@example.com'],
['name' => 'User #2', 'email' => 'user2@example.com'],
])->multiply(3);
/*
[
['name' => 'User #1', 'email' => 'user1@example.com'],
['name' => 'User #2', 'email' => 'user2@example.com'],
['name' => 'User #1', 'email' => 'user1@example.com'],
['name' => 'User #2', 'email' => 'user2@example.com'],
['name' => 'User #1', 'email' => 'user1@example.com'],
['name' => 'User #2', 'email' => 'user2@example.com'],
]
*/
nth()
nth 方法建立一個包含每隔 n 個元素的新集合:
$collection = collect(['a', 'b', 'c', 'd', 'e', 'f']);
$collection->nth(4);
// ['a', 'e']
你可以選擇性地傳遞一個起始偏移量作為第二個參數:
$collection->nth(4, 1);
// ['b', 'f']
only()
only 方法回傳集合中具有指定鍵的項目:
$collection = collect([
'product_id' => 1,
'name' => 'Desk',
'price' => 100,
'discount' => false
]);
$filtered = $collection->only(['product_id', 'name']);
$filtered->all();
// ['product_id' => 1, 'name' => 'Desk']
對於 only 的相反操作,請參閱 except 方法。
[!NOTE] 當使用 Eloquent 集合 時,此方法的行為會被修改。
pad()
pad 方法將使用給定值填入陣列,直到陣列達到指定大小。此方法的行為類似於 PHP 函式 array_pad。
要向左填入,你應該指定一個負的尺寸。如果給定尺寸的絕對值小於或等於陣列長度,則不會發生填入:
$collection = collect(['A', 'B', 'C']);
$filtered = $collection->pad(5, 0);
$filtered->all();
// ['A', 'B', 'C', 0, 0]
$filtered = $collection->pad(-5, 0);
$filtered->all();
// [0, 0, 'A', 'B', 'C']
partition()
partition 方法可以與 PHP 陣列解構結合使用,以區分通過給定真值測試的元素和未通過的元素:
$collection = collect([1, 2, 3, 4, 5, 6]);
[$underThree, $equalOrAboveThree] = $collection->partition(function (int $i) {
return $i < 3;
});
$underThree->all();
// [1, 2]
$equalOrAboveThree->all();
// [3, 4, 5, 6]
[!NOTE] 當與 Eloquent 集合 互動時,此方法的行為會被修改。
percentage()
percentage 方法可以用來快速判斷集合中通過給定真值測試的項目百分比:
$collection = collect([1, 1, 2, 2, 2, 3]);
$percentage = $collection->percentage(fn (int $value) => $value === 1);
// 33.33
預設情況下,百分比將四捨五入到小數點後兩位。不過,你可以藉由向方法提供第二個參數來定制這種行為:
$percentage = $collection->percentage(fn (int $value) => $value === 1, precision: 3);
// 33.333
pipe()
pipe 方法將集合傳遞給給定閉包,並回傳被執行之閉包的結果:
$collection = collect([1, 2, 3]);
$piped = $collection->pipe(function (Collection $collection) {
return $collection->sum();
});
// 6
pipeInto()
pipeInto 方法建立給定類別的新實例,並將集合傳遞給建構子:
class ResourceCollection
{
/**
* 建立一個新的 ResourceCollection 實例。
*/
public function __construct(
public Collection $collection,
) {}
}
$collection = collect([1, 2, 3]);
$resource = $collection->pipeInto(ResourceCollection::class);
$resource->collection->all();
// [1, 2, 3]
pipeThrough()
pipeThrough 方法將集合傳遞給給定的閉包陣列,並回傳被執行的閉包結果:
use Illuminate\Support\Collection;
$collection = collect([1, 2, 3]);
$result = $collection->pipeThrough([
function (Collection $collection) {
return $collection->merge([4, 5]);
},
function (Collection $collection) {
return $collection->sum();
},
]);
// 15
pluck()
pluck 方法檢索給定鍵的所有值:
$collection = collect([
['product_id' => 'prod-100', 'name' => 'Desk'],
['product_id' => 'prod-200', 'name' => 'Chair'],
]);
$plucked = $collection->pluck('name');
$plucked->all();
// ['Desk', 'Chair']
你也可以指定希望產生之集合被鍵控的方式:
$plucked = $collection->pluck('name', 'product_id');
$plucked->all();
// ['prod-100' => 'Desk', 'prod-200' => 'Chair']
pluck 方法也支援使用「點」表示法檢索巢狀值:
$collection = collect([
[
'name' => 'Laracon',
'speakers' => [
'first_day' => ['Rosa', 'Judith'],
],
],
[
'name' => 'VueConf',
'speakers' => [
'first_day' => ['Abigail', 'Joey'],
],
],
]);
$plucked = $collection->pluck('speakers.first_day');
$plucked->all();
// [['Rosa', 'Judith'], ['Abigail', 'Joey']]
如果存在重複鍵,最後一個相符的元素將被插入到拔取 (plucked) 出的集合中:
$collection = collect([
['brand' => 'Tesla', 'color' => 'red'],
['brand' => 'Pagani', 'color' => 'white'],
['brand' => 'Tesla', 'color' => 'black'],
['brand' => 'Pagani', 'color' => 'orange'],
]);
$plucked = $collection->pluck('color', 'brand');
$plucked->all();
// ['Tesla' => 'black', 'Pagani' => 'orange']
pop()
pop 方法從集合中移除並回傳最後一個項目。如果集合是空的,將回傳 null:
$collection = collect([1, 2, 3, 4, 5]);
$collection->pop();
// 5
$collection->all();
// [1, 2, 3, 4]
你可以傳遞一個整數給 pop 方法來從集合的末尾移除並回傳多個項目:
$collection = collect([1, 2, 3, 4, 5]);
$collection->pop(3);
// collect([5, 4, 3])
$collection->all();
// [1, 2]
prepend()
prepend 方法將一個項目加入到集合的開頭:
$collection = collect([1, 2, 3, 4, 5]);
$collection->prepend(0);
$collection->all();
// [0, 1, 2, 3, 4, 5]
你可以同時傳遞第二個參數來指定前置項目的鍵:
$collection = collect(['one' => 1, 'two' => 2]);
$collection->prepend(0, 'zero');
$collection->all();
// ['zero' => 0, 'one' => 1, 'two' => 2]
pull()
pull 方法透過其鍵從集合中移除並回傳一個項目:
$collection = collect(['product_id' => 'prod-100', 'name' => 'Desk']);
$collection->pull('name');
// 'Desk'
$collection->all();
// ['product_id' => 'prod-100']
push()
push 方法將一個項目附加到集合的末尾:
$collection = collect([1, 2, 3, 4]);
$collection->push(5);
$collection->all();
// [1, 2, 3, 4, 5]
你也可以提供多個項目附加到集合的末尾:
$collection = collect([1, 2, 3, 4]);
$collection->push(5, 6, 7);
$collection->all();
// [1, 2, 3, 4, 5, 6, 7]
put()
put 方法在集合中設定給定鍵和值:
$collection = collect(['product_id' => 1, 'name' => 'Desk']);
$collection->put('price', 100);
$collection->all();
// ['product_id' => 1, 'name' => 'Desk', 'price' => 100]
random()
random 方法從集合中回傳一個隨機項目:
$collection = collect([1, 2, 3, 4, 5]);
$collection->random();
// 4 - (隨機檢索)
你可以傳遞一個整數給 random 來指定你想要隨機檢索多少項目。當明確傳遞你想接收的項目數量時,總是會回傳一個項目的集合:
$random = $collection->random(3);
$random->all();
// [2, 4, 5] - (隨機檢索)
如果集合實例的項目少於所要求的項目,random 方法會拋出 InvalidArgumentException。
random 方法還接受一個閉包,該閉包將接收當前的集合實例:
use Illuminate\Support\Collection;
$random = $collection->random(fn (Collection $items) => min(10, count($items)));
$random->all();
// [1, 2, 3, 4, 5] - (隨機檢索)
range()
range 方法回傳一個包含指定範圍內整數的集合:
$collection = collect()->range(3, 6);
$collection->all();
// [3, 4, 5, 6]
reduce()
reduce 方法將集合簡化為單一值,並將每次迭代的結果傳遞到下一次迭代中:
$collection = collect([1, 2, 3]);
$total = $collection->reduce(function (?int $carry, int $item) {
return $carry + $item;
});
// 6
第一次迭代的 $carry 值為 null;但是,你可以藉由傳遞第二個參數給 reduce 來指定其初始值:
$collection->reduce(function (int $carry, int $item) {
return $carry + $item;
}, 4);
// 10
reduce 方法也會將陣列鍵傳遞給給定回呼:
$collection = collect([
'usd' => 1400,
'gbp' => 1200,
'eur' => 1000,
]);
$ratio = [
'usd' => 1,
'gbp' => 1.37,
'eur' => 1.22,
];
$collection->reduce(function (int $carry, int $value, string $key) use ($ratio) {
return $carry + ($value * $ratio[$key]);
}, 0);
// 4264
reduceSpread()
reduceSpread 方法將集合簡化為值的陣列,並將每次迭代的結果傳遞到下一次迭代。這個方法類似於 reduce 方法;然而,它可以接受多個初始值:
[$creditsRemaining, $batch] = Image::where('status', 'unprocessed')
->get()
->reduceSpread(function (int $creditsRemaining, Collection $batch, Image $image) {
if ($creditsRemaining >= $image->creditsRequired()) {
$batch->push($image);
$creditsRemaining -= $image->creditsRequired();
}
return [$creditsRemaining, $batch];
}, $creditsAvailable, collect());
reject()
reject 方法使用給定閉包來過濾集合。如果應將項目從結果集合中移除,則閉包應回傳 true:
$collection = collect([1, 2, 3, 4]);
$filtered = $collection->reject(function (int $value, int $key) {
return $value > 2;
});
$filtered->all();
// [1, 2]
要取得 reject 方法的相反結果,請參閱 filter 方法。
replace()
replace 方法的行為與 merge 相似;然而,除了覆寫具有字串鍵的相符項目外,replace 方法也會覆寫集合中具有相符數字鍵的項目:
$collection = collect(['Taylor', 'Abigail', 'James']);
$replaced = $collection->replace([1 => 'Victoria', 3 => 'Finn']);
$replaced->all();
// ['Taylor', 'Victoria', 'James', 'Finn']
replaceRecursive()
replaceRecursive 方法的行為與 replace 相似,但它將遞迴進入陣列並將相同的替換過程應用於內部值:
$collection = collect([
'Taylor',
'Abigail',
[
'James',
'Victoria',
'Finn'
]
]);
$replaced = $collection->replaceRecursive([
'Charlie',
2 => [1 => 'King']
]);
$replaced->all();
// ['Charlie', 'Abigail', ['James', 'King', 'Finn']]
reverse()
reverse 方法將集合的項目順序顛倒,保留原始鍵:
$collection = collect(['a', 'b', 'c', 'd', 'e']);
$reversed = $collection->reverse();
$reversed->all();
/*
[
4 => 'e',
3 => 'd',
2 => 'c',
1 => 'b',
0 => 'a',
]
*/
search()
search 方法在集合中搜尋給定值,如果找到則回傳其鍵。如果找不到項目,則回傳 false:
$collection = collect([2, 4, 6, 8]);
$collection->search(4);
// 1
此搜尋使用「寬鬆」比較進行,這意味著具有整數值的字串將被視為等於相同值的整數。要使用「嚴格」比較,請將 true 作為方法的第二個參數傳遞:
collect([2, 4, 6, 8])->search('4', strict: true);
// false
或者,你可以提供自己的閉包來搜尋第一個通過給定真值測試的項目:
collect([2, 4, 6, 8])->search(function (int $item, int $key) {
return $item > 5;
});
// 2
select()
select 方法從集合中選擇給定的鍵,類似於 SQL SELECT 語句:
$users = collect([
['name' => 'Taylor Otwell', 'role' => 'Developer', 'status' => 'active'],
['name' => 'Victoria Faith', 'role' => 'Researcher', 'status' => 'active'],
]);
$users->select(['name', 'role']);
/*
[
['name' => 'Taylor Otwell', 'role' => 'Developer'],
['name' => 'Victoria Faith', 'role' => 'Researcher'],
],
*/
shift()
shift 方法從集合中移除並回傳第一個項目:
$collection = collect([1, 2, 3, 4, 5]);
$collection->shift();
// 1
$collection->all();
// [2, 3, 4, 5]
你可以傳遞一個整數給 shift 方法,以從集合的開頭移除並回傳多個項目:
$collection = collect([1, 2, 3, 4, 5]);
$collection->shift(3);
// collect([1, 2, 3])
$collection->all();
// [4, 5]
shuffle()
shuffle 方法隨機洗牌集合中的項目:
$collection = collect([1, 2, 3, 4, 5]);
$shuffled = $collection->shuffle();
$shuffled->all();
// [3, 2, 5, 1, 4] - (隨機產生)
skip()
skip 方法回傳一個新集合,從集合的開頭移除給定數量的元素:
$collection = collect([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
$collection = $collection->skip(4);
$collection->all();
// [5, 6, 7, 8, 9, 10]
skipUntil()
當給定回呼回傳 false 時,skipUntil 方法將跳過集合中的項目。一旦回呼回傳 true,集合中所有剩餘的項目將作為一個新集合回傳:
$collection = collect([1, 2, 3, 4]);
$subset = $collection->skipUntil(function (int $item) {
return $item >= 3;
});
$subset->all();
// [3, 4]
你也可以傳遞一個簡單值給 skipUntil 方法,以跳過所有項目,直到找到給定值:
$collection = collect([1, 2, 3, 4]);
$subset = $collection->skipUntil(3);
$subset->all();
// [3, 4]
[!WARNING] 如果找不到給定值或回呼從未回傳
true,skipUntil方法將回傳一個空集合。
skipWhile()
當給定回呼回傳 true 時,skipWhile 方法將跳過集合中的項目。一旦回呼回傳 false,集合中所有剩餘的項目將作為一個新集合回傳:
$collection = collect([1, 2, 3, 4]);
$subset = $collection->skipWhile(function (int $item) {
return $item <= 3;
});
$subset->all();
// [4]
[!WARNING] 如果回呼從未回傳
false,skipWhile方法將回傳一個空集合。
slice()
slice 方法回傳從給定索引開始的集合切片:
$collection = collect([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
$slice = $collection->slice(4);
$slice->all();
// [5, 6, 7, 8, 9, 10]
如果您希望限制回傳切片的大小,請將所需大小作為第二個參數傳遞給該方法:
$slice = $collection->slice(4, 2);
$slice->all();
// [5, 6]
回傳的切片將預設保留鍵。如果你不希望保留原始鍵,你可以使用 values 方法重新索引它們。
sliding()
sliding 方法回傳一個新區塊集合,表示集合中項目的「滑動視窗」視圖:
$collection = collect([1, 2, 3, 4, 5]);
$chunks = $collection->sliding(2);
$chunks->toArray();
// [[1, 2], [2, 3], [3, 4], [4, 5]]
這在與 eachSpread 方法結合使用時特別有用:
$transactions->sliding(2)->eachSpread(function (Collection $previous, Collection $current) {
$current->total = $previous->total + $current->amount;
});
你可以選擇性地傳遞第二個「步驟」值,該值決定每個區塊的第一個項目之間的距離:
$collection = collect([1, 2, 3, 4, 5]);
$chunks = $collection->sliding(3, step: 2);
$chunks->toArray();
// [[1, 2, 3], [3, 4, 5]]
sole()
sole 方法回傳集合中通過給定真值測試的第一個元素,但前提是該真值測試恰好符合一個元素:
collect([1, 2, 3, 4])->sole(function (int $value, int $key) {
return $value === 2;
});
// 2
你也可以傳遞一個鍵 / 值對給 sole 方法,這將回傳集合中符合給定對的第一個元素,但前提是恰好有一個元素符合:
$collection = collect([
['product' => 'Desk', 'price' => 200],
['product' => 'Chair', 'price' => 100],
]);
$collection->sole('product', 'Chair');
// ['product' => 'Chair', 'price' => 100]
或者,你也可以在沒有參數的情況下呼叫 sole 方法,以取得集合中唯一的元素:
$collection = collect([
['product' => 'Desk', 'price' => 200],
]);
$collection->sole();
// ['product' => 'Desk', 'price' => 200]
如果集合中沒有元素應由 sole 方法回傳,則將拋出 \Illuminate\Collections\ItemNotFoundException 例外。如果有超過一個元素應回傳,則將拋出 \Illuminate\Collections\MultipleItemsFoundException。
some()
contains 方法的別名。
sort()
sort 方法對集合進行排序。排序後的集合保留原始陣列鍵,因此在以下範例中,我們將使用 values 方法將鍵重置為連續編號的索引:
$collection = collect([5, 3, 1, 2, 4]);
$sorted = $collection->sort();
$sorted->values()->all();
// [1, 2, 3, 4, 5]
如果你的排序需求較為進階,你可以將帶有自己演算法的閉包傳遞給 sort。請參閱有關 uasort 的 PHP 文件,這就是集合的 sort 方法內部所呼叫的函式。
[!NOTE] 如果你需要對巢狀陣列或物件的集合進行排序,請參閱 sortBy 和 sortByDesc 方法。
sortBy()
sortBy 方法依給定鍵對集合進行排序。排序後的集合保留原始陣列鍵,因此在以下範例中,我們將使用 values 方法將鍵重置為連續編號的索引:
$collection = collect([
['name' => 'Desk', 'price' => 200],
['name' => 'Chair', 'price' => 100],
['name' => 'Bookcase', 'price' => 150],
]);
$sorted = $collection->sortBy('price');
$sorted->values()->all();
/*
[
['name' => 'Chair', 'price' => 100],
['name' => 'Bookcase', 'price' => 150],
['name' => 'Desk', 'price' => 200],
]
*/
sortBy 方法接受 排序旗標 作為其第二個參數:
$collection = collect([
['title' => 'Item 1'],
['title' => 'Item 12'],
['title' => 'Item 3'],
]);
$sorted = $collection->sortBy('title', SORT_NATURAL);
$sorted->values()->all();
/*
[
['title' => 'Item 1'],
['title' => 'Item 3'],
['title' => 'Item 12'],
]
*/
或者,你可以傳遞自己的閉包來決定如何排序集合的值:
$collection = collect([
['name' => 'Desk', 'colors' => ['Black', 'Mahogany']],
['name' => 'Chair', 'colors' => ['Black']],
['name' => 'Bookcase', 'colors' => ['Red', 'Beige', 'Brown']],
]);
$sorted = $collection->sortBy(function (array $product, int $key) {
return count($product['colors']);
});
$sorted->values()->all();
/*
[
['name' => 'Chair', 'colors' => ['Black']],
['name' => 'Desk', 'colors' => ['Black', 'Mahogany']],
['name' => 'Bookcase', 'colors' => ['Red', 'Beige', 'Brown']],
]
*/
如果你想要根據多個屬性對集合進行排序,你可以將排序操作陣列傳遞給 sortBy 方法。每個排序操作應為一個包含欲排序屬性和所需排序方向的陣列:
$collection = collect([
['name' => 'Taylor Otwell', 'age' => 34],
['name' => 'Abigail Otwell', 'age' => 30],
['name' => 'Taylor Otwell', 'age' => 36],
['name' => 'Abigail Otwell', 'age' => 32],
]);
$sorted = $collection->sortBy([
['name', 'asc'],
['age', 'desc'],
]);
$sorted->values()->all();
/*
[
['name' => 'Abigail Otwell', 'age' => 32],
['name' => 'Abigail Otwell', 'age' => 30],
['name' => 'Taylor Otwell', 'age' => 36],
['name' => 'Taylor Otwell', 'age' => 34],
]
*/
當根據多個屬性對集合進行排序時,你也可以提供定義每個排序操作的閉包:
$collection = collect([
['name' => 'Taylor Otwell', 'age' => 34],
['name' => 'Abigail Otwell', 'age' => 30],
['name' => 'Taylor Otwell', 'age' => 36],
['name' => 'Abigail Otwell', 'age' => 32],
]);
$sorted = $collection->sortBy([
fn (array $a, array $b) => $a['name'] <=> $b['name'],
fn (array $a, array $b) => $b['age'] <=> $a['age'],
]);
$sorted->values()->all();
/*
[
['name' => 'Abigail Otwell', 'age' => 32],
['name' => 'Abigail Otwell', 'age' => 30],
['name' => 'Taylor Otwell', 'age' => 36],
['name' => 'Taylor Otwell', 'age' => 34],
]
*/
sortByDesc()
此方法的簽章與 sortBy 方法相同,但會以相反的順序對集合進行排序。
sortDesc()
此方法將會以與 sort 方法相反的順序對集合進行排序:
$collection = collect([5, 3, 1, 2, 4]);
$sorted = $collection->sortDesc();
$sorted->values()->all();
// [5, 4, 3, 2, 1]
與 sort 不同,你不能傳遞閉包給 sortDesc。相反,你應該使用 sort 方法並反轉比較。
sortKeys()
sortKeys 方法依底層關聯陣列的鍵對集合進行排序:
$collection = collect([
'id' => 22345,
'first' => 'John',
'last' => 'Doe',
]);
$sorted = $collection->sortKeys();
$sorted->all();
/*
[
'first' => 'John',
'id' => 22345,
'last' => 'Doe',
]
*/
sortKeysDesc()
此方法的簽章與 sortKeys 方法相同,但會以相反的順序對集合進行排序。
sortKeysUsing()
sortKeysUsing 方法使用回呼依底層關聯陣列的鍵對集合進行排序:
$collection = collect([
'ID' => 22345,
'first' => 'John',
'last' => 'Doe',
]);
$sorted = $collection->sortKeysUsing('strnatcasecmp');
$sorted->all();
/*
[
'first' => 'John',
'ID' => 22345,
'last' => 'Doe',
]
*/
回呼必須是一個回傳小於、等於或大於零之整數的比較函式。如需更多資訊,請參閱有關 uksort 的 PHP 文件,這是 sortKeysUsing 方法內部利用的 PHP 函式。
splice()
splice 方法移除並回傳從指定索引開始的一段項目:
$collection = collect([1, 2, 3, 4, 5]);
$chunk = $collection->splice(2);
$chunk->all();
// [3, 4, 5]
$collection->all();
// [1, 2]
你可以傳遞第二個參數來限制產生之集合的大小:
$collection = collect([1, 2, 3, 4, 5]);
$chunk = $collection->splice(2, 1);
$chunk->all();
// [3]
$collection->all();
// [1, 2, 4, 5]
此外,你可以傳遞第三個參數,包含新項目以替換從集合中移除的項目:
$collection = collect([1, 2, 3, 4, 5]);
$chunk = $collection->splice(2, 1, [10, 11]);
$chunk->all();
// [3]
$collection->all();
// [1, 2, 10, 11, 4, 5]
split()
split 方法將集合分成給定數量的群組:
$collection = collect([1, 2, 3, 4, 5]);
$groups = $collection->split(3);
$groups->all();
// [[1, 2], [3, 4], [5]]
splitIn()
splitIn 方法將集合分成給定數量的群組,在將餘數分配給最後一個群組之前,完全填滿非終端群組:
$collection = collect([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
$groups = $collection->splitIn(3);
$groups->all();
// [[1, 2, 3, 4], [5, 6, 7, 8], [9, 10]]
sum()
sum 方法回傳集合中所有項目的總和:
collect([1, 2, 3, 4, 5])->sum();
// 15
如果集合包含巢狀陣列或物件,你應該傳遞一個鍵,該鍵將用於決定哪些值要相加:
$collection = collect([
['name' => 'JavaScript: The Good Parts', 'pages' => 176],
['name' => 'JavaScript: The Definitive Guide', 'pages' => 1096],
]);
$collection->sum('pages');
// 1272
此外,你可以傳遞自己的閉包來決定集合的哪些值要相加:
$collection = collect([
['name' => 'Chair', 'colors' => ['Black']],
['name' => 'Desk', 'colors' => ['Black', 'Mahogany']],
['name' => 'Bookcase', 'colors' => ['Red', 'Beige', 'Brown']],
]);
$collection->sum(function (array $product) {
return count($product['colors']);
});
// 6
take()
take 方法回傳一個包含指定數量項目的新集合:
$collection = collect([0, 1, 2, 3, 4, 5]);
$chunk = $collection->take(3);
$chunk->all();
// [0, 1, 2]
你也可以傳遞一個負整數以從集合的末尾獲取指定數量的項目:
$collection = collect([0, 1, 2, 3, 4, 5]);
$chunk = $collection->take(-2);
$chunk->all();
// [4, 5]
takeUntil()
takeUntil 方法回傳集合中的項目,直到給定回呼回傳 true:
$collection = collect([1, 2, 3, 4]);
$subset = $collection->takeUntil(function (int $item) {
return $item >= 3;
});
$subset->all();
// [1, 2]
你也可以傳遞一個簡單值給 takeUntil 方法來取得項目,直到找到給定值為止:
$collection = collect([1, 2, 3, 4]);
$subset = $collection->takeUntil(3);
$subset->all();
// [1, 2]
[!WARNING] 如果找不到給定值或回呼從不回傳
true,takeUntil方法將回傳集合中的所有項目。
takeWhile()
takeWhile 方法回傳集合中的項目,直到給定回呼回傳 false:
$collection = collect([1, 2, 3, 4]);
$subset = $collection->takeWhile(function (int $item) {
return $item < 3;
});
$subset->all();
// [1, 2]
[!WARNING] 如果回呼從不回傳
false,takeWhile方法將回傳集合中的所有項目。
tap()
tap 方法將集合傳遞給給定回呼,允許你在特定點「點擊 (tap)」進入集合並對項目執行某些操作,而不會影響集合本身。然後 tap 方法會回傳該集合:
collect([2, 4, 3, 1, 5])
->sort()
->tap(function (Collection $collection) {
Log::debug('Values after sorting', $collection->values()->all());
})
->shift();
// 1
times()
靜態 times 方法藉由呼叫給定的閉包指定次數來建立一個新集合:
$collection = Collection::times(10, function (int $number) {
return $number * 9;
});
$collection->all();
// [9, 18, 27, 36, 45, 54, 63, 72, 81, 90]
toArray()
toArray 方法將集合轉換為純 PHP array。如果集合的值是 Eloquent 模型,這些模型也會被轉換為陣列:
$collection = collect(['name' => 'Desk', 'price' => 200]);
$collection->toArray();
/*
[
['name' => 'Desk', 'price' => 200],
]
*/
[!WARNING]
toArray也會將所有屬於Arrayable實例的集合巢狀物件轉換為陣列。如果你想取得底層集合的原始陣列,請改用 all 方法。
toJson()
toJson 方法將集合轉換為 JSON 序列化字串:
$collection = collect(['name' => 'Desk', 'price' => 200]);
$collection->toJson();
// '{"name":"Desk", "price":200}'
toPrettyJson()
toPrettyJson 方法使用 JSON_PRETTY_PRINT 選項將集合轉換為格式化的 JSON 字串:
$collection = collect(['name' => 'Desk', 'price' => 200]);
$collection->toPrettyJson();
transform()
transform 方法迭代集合,並以集合中的每個項目呼叫給定回呼。集合中的項目將被回呼回傳的值替換:
$collection = collect([1, 2, 3, 4, 5]);
$collection->transform(function (int $item, int $key) {
return $item * 2;
});
$collection->all();
// [2, 4, 6, 8, 10]
[!WARNING] 與大多數其他集合方法不同,
transform修改集合本身。如果你希望建立一個新的集合,請使用 map 方法。
undot()
undot 方法將使用「點」表示法的單維集合展開為多維集合:
$person = collect([
'name.first_name' => 'Marie',
'name.last_name' => 'Valentine',
'address.line_1' => '2992 Eagle Drive',
'address.line_2' => '',
'address.suburb' => 'Detroit',
'address.state' => 'MI',
'address.postcode' => '48219'
]);
$person = $person->undot();
$person->toArray();
/*
[
"name" => [
"first_name" => "Marie",
"last_name" => "Valentine",
],
"address" => [
"line_1" => "2992 Eagle Drive",
"line_2" => "",
"suburb" => "Detroit",
"state" => "MI",
"postcode" => "48219",
],
]
*/
union()
union 方法將給定陣列加入到集合中。如果給定陣列包含原本集合中已存在的鍵,則將優先保留原本集合的值:
$collection = collect([1 => ['a'], 2 => ['b']]);
$union = $collection->union([3 => ['c'], 1 => ['d']]);
$union->all();
// [1 => ['a'], 2 => ['b'], 3 => ['c']]
unique()
unique 方法回傳集合中所有獨特的項目。回傳之集合保留原始陣列鍵,因此在以下範例中我們將使用 values 方法將鍵重置為連續編號的索引:
$collection = collect([1, 1, 2, 2, 3, 4, 2]);
$unique = $collection->unique();
$unique->values()->all();
// [1, 2, 3, 4]
當處理巢狀陣列或物件時,你可以指定用於決定獨特性的鍵:
$collection = collect([
['name' => 'iPhone 6', 'brand' => 'Apple', 'type' => 'phone'],
['name' => 'iPhone 5', 'brand' => 'Apple', 'type' => 'phone'],
['name' => 'Apple Watch', 'brand' => 'Apple', 'type' => 'watch'],
['name' => 'Galaxy S6', 'brand' => 'Samsung', 'type' => 'phone'],
['name' => 'Galaxy Gear', 'brand' => 'Samsung', 'type' => 'watch'],
]);
$unique = $collection->unique('brand');
$unique->values()->all();
/*
[
['name' => 'iPhone 6', 'brand' => 'Apple', 'type' => 'phone'],
['name' => 'Galaxy S6', 'brand' => 'Samsung', 'type' => 'phone'],
]
*/
最後,你也可以傳遞自己的閉包給 unique 方法,以指定應該決定項目獨特性的值:
$unique = $collection->unique(function (array $item) {
return $item['brand'].$item['type'];
});
$unique->values()->all();
/*
[
['name' => 'iPhone 6', 'brand' => 'Apple', 'type' => 'phone'],
['name' => 'Apple Watch', 'brand' => 'Apple', 'type' => 'watch'],
['name' => 'Galaxy S6', 'brand' => 'Samsung', 'type' => 'phone'],
['name' => 'Galaxy Gear', 'brand' => 'Samsung', 'type' => 'watch'],
]
*/
unique 方法在檢查項目值時使用「寬鬆」比較,這意味著具有整數值的字串將被視為等於相同值的整數。使用 uniqueStrict 方法以使用「嚴格」比較進行過濾。
[!NOTE] 當使用 Eloquent 集合 時,此方法的行為會被修改。
uniqueStrict()
此方法的簽章與 unique 方法相同;然而,所有的值都是使用「嚴格」比較來進行比較。
unless()
unless 方法將執行給定的回呼,除非提供給方法的第一個參數評估為 true。集合實例和傳遞給 unless 方法的第一個參數將被提供給閉包:
$collection = collect([1, 2, 3]);
$collection->unless(true, function (Collection $collection, bool $value) {
return $collection->push(4);
});
$collection->unless(false, function (Collection $collection, bool $value) {
return $collection->push(5);
});
$collection->all();
// [1, 2, 3, 5]
第二個回呼可傳遞給 unless 方法。當提供給 unless 方法的第一個參數評估為 true 時,將執行第二個回呼:
$collection = collect([1, 2, 3]);
$collection->unless(true, function (Collection $collection, bool $value) {
return $collection->push(4);
}, function (Collection $collection, bool $value) {
return $collection->push(5);
});
$collection->all();
// [1, 2, 3, 5]
對於 unless 的相反操作,請參閱 when 方法。
unlessEmpty()
whenNotEmpty 方法的別名。
unlessNotEmpty()
whenEmpty 方法的別名。
unwrap()
靜態 unwrap 方法適用時從給定值回傳集合的底層項目:
Collection::unwrap(collect('John Doe'));
// ['John Doe']
Collection::unwrap(['John Doe']);
// ['John Doe']
Collection::unwrap('John Doe');
// 'John Doe'
value()
value 方法從集合的第一個元素中檢索給定值:
$collection = collect([
['product' => 'Desk', 'price' => 200],
['product' => 'Speaker', 'price' => 400],
]);
$value = $collection->value('price');
// 200
values()
values 方法回傳一個新集合,其中鍵被重設為連續的整數:
$collection = collect([
10 => ['product' => 'Desk', 'price' => 200],
11 => ['product' => 'Speaker', 'price' => 400],
]);
$values = $collection->values();
$values->all();
/*
[
0 => ['product' => 'Desk', 'price' => 200],
1 => ['product' => 'Speaker', 'price' => 400],
]
*/
when()
when 方法將在提供給方法的第一個參數評估為 true 時執行給定的回呼。集合實例和傳遞給 when 方法的第一個參數將被提供給閉包:
$collection = collect([1, 2, 3]);
$collection->when(true, function (Collection $collection, bool $value) {
return $collection->push(4);
});
$collection->when(false, function (Collection $collection, bool $value) {
return $collection->push(5);
});
$collection->all();
// [1, 2, 3, 4]
第二個回呼可傳遞給 when 方法。當提供給 when 方法的第一個參數評估為 false 時,將執行第二個回呼:
$collection = collect([1, 2, 3]);
$collection->when(false, function (Collection $collection, bool $value) {
return $collection->push(4);
}, function (Collection $collection, bool $value) {
return $collection->push(5);
});
$collection->all();
// [1, 2, 3, 5]
對於 when 的相反操作,請參閱 unless 方法。
whenEmpty()
當集合為空時,whenEmpty 方法將執行給定的回呼:
$collection = collect(['Michael', 'Tom']);
$collection->whenEmpty(function (Collection $collection) {
return $collection->push('Adam');
});
$collection->all();
// ['Michael', 'Tom']
$collection = collect();
$collection->whenEmpty(function (Collection $collection) {
return $collection->push('Adam');
});
$collection->all();
// ['Adam']
可以將第二個閉包傳遞給 whenEmpty 方法,當集合不為空時,該閉包將被執行:
$collection = collect(['Michael', 'Tom']);
$collection->whenEmpty(function (Collection $collection) {
return $collection->push('Adam');
}, function (Collection $collection) {
return $collection->push('Taylor');
});
$collection->all();
// ['Michael', 'Tom', 'Taylor']
對於 whenEmpty 的相反操作,請參閱 whenNotEmpty 方法。
whenNotEmpty()
當集合不為空時,whenNotEmpty 方法將執行給定的回呼:
$collection = collect(['Michael', 'Tom']);
$collection->whenNotEmpty(function (Collection $collection) {
return $collection->push('Adam');
});
$collection->all();
// ['Michael', 'Tom', 'Adam']
$collection = collect();
$collection->whenNotEmpty(function (Collection $collection) {
return $collection->push('Adam');
});
$collection->all();
// []
可以將第二個閉包傳遞給 whenNotEmpty 方法,當集合為空時,該閉包將被執行:
$collection = collect();
$collection->whenNotEmpty(function (Collection $collection) {
return $collection->push('Adam');
}, function (Collection $collection) {
return $collection->push('Taylor');
});
$collection->all();
// ['Taylor']
對於 whenNotEmpty 的相反操作,請參閱 whenEmpty 方法。
where()
where 方法透過給定的鍵 / 值對來過濾集合:
$collection = collect([
['product' => 'Desk', 'price' => 200],
['product' => 'Chair', 'price' => 100],
['product' => 'Bookcase', 'price' => 150],
['product' => 'Door', 'price' => 100],
]);
$filtered = $collection->where('price', 100);
$filtered->all();
/*
[
['product' => 'Chair', 'price' => 100],
['product' => 'Door', 'price' => 100],
]
*/
where 方法在檢查項目值時使用「寬鬆」比較,這意味著具有整數值的字串將被視為等於相同值的整數。使用 whereStrict 方法來使用「嚴格」比較進行過濾,或使用 whereNull 和 whereNotNull 方法來過濾 null 值。
你可以選擇性地傳遞比較運算子作為第二個參數。支援的運算子為:'==='、'!=='、'!='、'=='、'='、'<>'、'>'、'<'、'>=' 和 '<=':
$collection = collect([
['name' => 'Jim', 'platform' => 'Mac'],
['name' => 'Sally', 'platform' => 'Mac'],
['name' => 'Sue', 'platform' => 'Linux'],
]);
$filtered = $collection->where('platform', '!=', 'Linux');
$filtered->all();
/*
[
['name' => 'Jim', 'platform' => 'Mac'],
['name' => 'Sally', 'platform' => 'Mac'],
]
*/
whereStrict()
此方法的簽章與 where 方法相同;然而,所有的值都是使用「嚴格」比較來進行比較。
whereBetween()
whereBetween 方法藉由判斷指定項目值是否在給定範圍內來過濾集合:
$collection = collect([
['product' => 'Desk', 'price' => 200],
['product' => 'Chair', 'price' => 80],
['product' => 'Bookcase', 'price' => 150],
['product' => 'Pencil', 'price' => 30],
['product' => 'Door', 'price' => 100],
]);
$filtered = $collection->whereBetween('price', [100, 200]);
$filtered->all();
/*
[
['product' => 'Desk', 'price' => 200],
['product' => 'Bookcase', 'price' => 150],
['product' => 'Door', 'price' => 100],
]
*/
whereIn()
whereIn 方法從集合中移除不具有指定項目值(該值包含在給定陣列中)的元素:
$collection = collect([
['product' => 'Desk', 'price' => 200],
['product' => 'Chair', 'price' => 100],
['product' => 'Bookcase', 'price' => 150],
['product' => 'Door', 'price' => 100],
]);
$filtered = $collection->whereIn('price', [150, 200]);
$filtered->all();
/*
[
['product' => 'Desk', 'price' => 200],
['product' => 'Bookcase', 'price' => 150],
]
*/
whereIn 方法在檢查項目值時使用「寬鬆」比較,這意味著具有整數值的字串將被視為等於相同值的整數。使用 whereInStrict 方法來使用「嚴格」比較進行過濾。
whereInStrict()
此方法的簽章與 whereIn 方法相同;然而,所有的值都是使用「嚴格」比較來進行比較。
whereInstanceOf()
whereInstanceOf 方法根據給定類別類型來過濾集合:
use App\Models\User;
use App\Models\Post;
$collection = collect([
new User,
new User,
new Post,
]);
$filtered = $collection->whereInstanceOf(User::class);
$filtered->all();
// [App\Models\User, App\Models\User]
whereNotBetween()
whereNotBetween 方法藉由判斷指定項目值是否在給定範圍外來過濾集合:
$collection = collect([
['product' => 'Desk', 'price' => 200],
['product' => 'Chair', 'price' => 80],
['product' => 'Bookcase', 'price' => 150],
['product' => 'Pencil', 'price' => 30],
['product' => 'Door', 'price' => 100],
]);
$filtered = $collection->whereNotBetween('price', [100, 200]);
$filtered->all();
/*
[
['product' => 'Chair', 'price' => 80],
['product' => 'Pencil', 'price' => 30],
]
*/
whereNotIn()
whereNotIn 方法從集合中移除具有指定項目值(該值包含在給定陣列中)的元素:
$collection = collect([
['product' => 'Desk', 'price' => 200],
['product' => 'Chair', 'price' => 100],
['product' => 'Bookcase', 'price' => 150],
['product' => 'Door', 'price' => 100],
]);
$filtered = $collection->whereNotIn('price', [150, 200]);
$filtered->all();
/*
[
['product' => 'Chair', 'price' => 100],
['product' => 'Door', 'price' => 100],
]
*/
whereNotIn 方法在檢查項目值時使用「寬鬆」比較,這意味著具有整數值的字串將被視為等於相同值的整數。使用 whereNotInStrict 方法來使用「嚴格」比較進行過濾。
whereNotInStrict()
此方法的簽章與 whereNotIn 方法相同;然而,所有的值都是使用「嚴格」比較來進行比較。
whereNotNull()
whereNotNull 方法從集合回傳給定鍵不為 null 的項目:
$collection = collect([
['name' => 'Desk'],
['name' => null],
['name' => 'Bookcase'],
['name' => 0],
['name' => ''],
]);
$filtered = $collection->whereNotNull('name');
$filtered->all();
/*
[
['name' => 'Desk'],
['name' => 'Bookcase'],
['name' => 0],
['name' => ''],
]
*/
whereNull()
whereNull 方法從集合回傳給定鍵為 null 的項目:
$collection = collect([
['name' => 'Desk'],
['name' => null],
['name' => 'Bookcase'],
['name' => 0],
['name' => ''],
]);
$filtered = $collection->whereNull('name');
$filtered->all();
/*
[
['name' => null],
]
*/
wrap()
靜態 wrap 方法適用時將給定值包裝在一個集合中:
use Illuminate\Support\Collection;
$collection = Collection::wrap('John Doe');
$collection->all();
// ['John Doe']
$collection = Collection::wrap(['John Doe']);
$collection->all();
// ['John Doe']
$collection = Collection::wrap(collect('John Doe'));
$collection->all();
// ['John Doe']
zip()
zip 方法將給定陣列的值與原始集合的值在其對應的索引處合併在一起:
$collection = collect(['Chair', 'Desk']);
$zipped = $collection->zip([100, 200]);
$zipped->all();
// [['Chair', 100], ['Desk', 200]]
高階訊息
集合還支援「高階訊息 (higher order messages)」,這是對集合執行常見動作的捷徑。提供高階訊息的集合方法有:average、avg、contains、each、every、filter、first、flatMap、groupBy、keyBy、map、max、min、partition、reject、skipUntil、skipWhile、some、sortBy、sortByDesc、sum、takeUntil、takeWhile 和 unique。
每個高階訊息都可以作為動態屬性在集合實例上被存取。例如,讓我們使用 each 高階訊息來呼叫集合內每個物件上的方法:
use App\Models\User;
$users = User::where('votes', '>', 500)->get();
$users->each->markAsVip();
同樣地,我們可以使用 sum 高階訊息來收集一組用戶「投票」的總數:
$users = User::where('group', 'Development')->get();
return $users->sum->votes;
延遲集合
簡介
[!WARNING] 在深入了解 Laravel 的延遲集合之前,花些時間熟悉 PHP 生成器 (generators)。
為了補充已經很強大的 Collection 類別,LazyCollection 類別利用了 PHP 的 生成器 以允許你在保持低記憶體使用率的同時處理非常大的資料集。
例如,想像你的應用程式需要處理一個幾 GB 的日誌檔案,同時利用 Laravel 的集合方法來解析日誌。延遲集合可以用來在給定時間內只將檔案的一小部分保存在記憶體中,而不是一次將整個檔案讀入記憶體:
use App\Models\LogEntry;
use Illuminate\Support\LazyCollection;
LazyCollection::make(function () {
$handle = fopen('log.txt', 'r');
while (($line = fgets($handle)) !== false) {
yield $line;
}
fclose($handle);
})->chunk(4)->map(function (array $lines) {
return LogEntry::fromLines($lines);
})->each(function (LogEntry $logEntry) {
// 處理日誌條目...
});
或者,想像你需要迭代 10,000 個 Eloquent 模型。當使用傳統的 Laravel 集合時,所有的 10,000 個 Eloquent 模型必須同時被載入記憶體中:
use App\Models\User;
$users = User::all()->filter(function (User $user) {
return $user->id > 500;
});
然而,查詢產生器的 cursor 方法會回傳一個 LazyCollection 實例。這允許你仍然只對資料庫執行一次查詢,但也一次只保留一個 Eloquent 模型載入記憶體中。在這個範例中,filter 回呼不會執行,直到我們實際上單獨迭代每個用戶,從而大幅減少記憶體使用量:
use App\Models\User;
$users = User::cursor()->filter(function (User $user) {
return $user->id > 500;
});
foreach ($users as $user) {
echo $user->id;
}
建立延遲集合
要建立一個延遲集合實例,你應該傳遞一個 PHP 生成器函式給集合的 make 方法:
use Illuminate\Support\LazyCollection;
LazyCollection::make(function () {
$handle = fopen('log.txt', 'r');
while (($line = fgets($handle)) !== false) {
yield $line;
}
fclose($handle);
});
Enumerable 契約
Collection 類別上可用的幾乎所有方法在 LazyCollection 類別上也可用。這兩個類別都實作了 Illuminate\Support\Enumerable 契約,該契約定義了以下方法:
all average avg chunk chunkWhile collapse collect combine concat contains containsStrict count countBy crossJoin dd diff diffAssoc diffKeys dump duplicates duplicatesStrict each eachSpread every except filter first firstOrFail firstWhere flatMap flatten flip forPage get groupBy has implode intersect intersectAssoc intersectByKeys isEmpty isNotEmpty join keyBy keys last macro make map mapInto mapSpread mapToGroups mapWithKeys max median merge mergeRecursive min mode nth only pad partition pipe pluck random reduce reject replace replaceRecursive reverse search shuffle skip slice sole some sort sortBy sortByDesc sortKeys sortKeysDesc split sum take tap times toArray toJson union unique uniqueStrict unless unlessEmpty unlessNotEmpty unwrap values when whenEmpty whenNotEmpty where whereStrict whereBetween whereIn whereInStrict whereInstanceOf whereNotBetween whereNotIn whereNotInStrict wrap zip
[!WARNING] 改變集合的方法(例如
shift、pop、prepend等)在LazyCollection類別上是 無法 使用的。
延遲集合方法
除了在 Enumerable 契約中定義的方法外,LazyCollection 類別還包含以下方法:
takeUntilTimeout()
takeUntilTimeout 方法回傳一個新的延遲集合,它將枚舉值直到指定時間為止。在該時間之後,集合將停止枚舉:
$lazyCollection = LazyCollection::times(INF)
->takeUntilTimeout(now()->plus(minutes: 1));
$lazyCollection->each(function (int $number) {
dump($number);
sleep(1);
});
// 1
// 2
// ...
// 58
// 59
為了說明這個方法的用法,想像一個從資料庫使用游標提交發票的應用程式。你可以定義一個 排程任務,它每 15 分鐘運行一次,並且最多只處理發票 14 分鐘:
use App\Models\Invoice;
use Illuminate\Support\Carbon;
Invoice::pending()->cursor()
->takeUntilTimeout(
Carbon::createFromTimestamp(LARAVEL_START)->add(14, 'minutes')
)
->each(fn (Invoice $invoice) => $invoice->submit());
tapEach()
each 方法會立即為集合中的每個項目呼叫給定回呼,而 tapEach 方法則只會在項目從清單中一個一個被拉出時呼叫給定回呼:
// 到目前為止沒有東西被印出...
$lazyCollection = LazyCollection::times(INF)->tapEach(function (int $value) {
dump($value);
});
// 印出三個項目...
$array = $lazyCollection->take(3)->all();
// 1
// 2
// 3
throttle()
throttle 方法將限制延遲集合,以便在指定的秒數後回傳每個值。這方法對於你可能與限制傳入請求速率的外部 API 進行互動的情況特別有用:
use App\Models\User;
User::where('vip', true)
->cursor()
->throttle(seconds: 1)
->each(function (User $user) {
// 呼叫外部 API...
});
remember()
remember 方法回傳一個新的延遲集合,該集合將記住任何已被枚舉過的值,並且不會在後續的集合枚舉中再次檢索它們:
// 尚未執行查詢...
$users = User::cursor()->remember();
// 查詢被執行了...
// 前 5 個使用者從資料庫水合 (hydrated)...
$users->take(5)->all();
// 前 5 個使用者來自集合的快取...
// 剩下的從資料庫水合 (hydrated)...
$users->take(20)->all();
withHeartbeat()
withHeartbeat 方法允許你在列舉延遲集合時,以固定的時間間隔執行回呼。這對於需要定期維護任務(例如延長鎖定或發送進度更新)的長時間執行操作特別有用:
use Carbon\CarbonInterval;
use Illuminate\Support\Facades\Cache;
$lock = Cache::lock('generate-reports', seconds: 60 * 5);
if ($lock->get()) {
try {
Report::where('status', 'pending')
->lazy()
->withHeartbeat(
CarbonInterval::minutes(4),
fn () => $lock->extend(CarbonInterval::minutes(5))
)
->each(fn ($report) => $report->process());
} finally {
$lock->release();
}
}
ClearcutLogger: Flush already in progress, marking pending flush.