イントロダクションIntroduction
Illuminate\Support\Collection
クラスは配列データを操作するための、書きやすく使いやすいラッパーです。以下の例をご覧ください。配列から新しいコレクションインスタンスを作成するためにcollect
ヘルパを使用し、各要素に対しstrtoupper
を実行し、それから空の要素を削除しています。The Illuminate\Support\Collection
class provides a fluent, convenient wrapper for working with arrays of data. For example, check out the following code. We'll use the collect
helper to create a new collection instance from the array, run the strtoupper
function on each element, and then remove all empty elements:
$collection = collect(['taylor', 'abigail', null])->map(function ($name) {
return strtoupper($name);
})
->reject(function ($name) {
return empty($name);
});
ご覧の通り、Collection
クラスは裏にある配列をマップ操作してから要素削除するメソッドをチェーンでスムーズにつなげてくれます。つまり、全てのCollection
メソッドは新しいCollection
インスタンスを返します。As you can see, the Collection
class allows you to chain its methods to perform fluent mapping and reducing of the underlying array. In general, every Collection
method returns an entirely new Collection
instance.
コレクション生成Creating Collections
上記の通りcollect
ヘルパは指定された配列を元に、新しいIlluminate\Support\Collection
インスタンスを返します。ですからコレクションの生成も同様にシンプルです。As mentioned above, the collect
helper returns a new Illuminate\Support\Collection
instance for the given array. So, creating a collection is as simple as:
$collection = collect([1, 2, 3]);
デフォルトでEloquentオブジェクトのコレクションは、いつもCollection
インスタンスを返します。しかしアプリケーションで便利に使えるなら、どこででも自由にCollection
クラスを利用してください。By default, collections of Eloquent[/docs/{{version}}/eloquent] models are always returned as Collection
instances; however, feel free to use the Collection
class wherever it is convenient for your application.
利用可能なメソッドAvailable Methods
このドキュメントの残りでCollection
クラスで使用できる各メソッドを解説します。これらのメソッドは全て裏の配列をスラスラと操作するためにチェーンで繋げられることを覚えておきましょう。さらにほとんどのメソッドは新しいCollection
インスタンスを返しますので、必要であれば保存してあるコレクションのオリジナルコピーを利用できます。For the remainder of this documentation, we'll discuss each method available on the Collection
class. Remember, all of these methods may be chained for fluently manipulating the underlying array. Furthermore, almost every method returns a new Collection
instance, allowing you to preserve the original copy of the collection when necessary.
以下のテーブルのメソッドをどれでも選べば、サンプルコードが確認できます。You may select any method from this table to see an example of its usage:
メソッド一覧Method Listing
all()
{#collection-method .first-collection-method}all()
{#collection-method .first-collection-method}
all
メソッドはコレクションが表す裏の配列をシンプルに返します。The all
method simply returns the underlying array represented by the collection:
collect([1, 2, 3])->all();
// [1, 2, 3]
avg()
{#collection-method}avg()
{#collection-method}
avg
メソッドはコレクションの全アイテムの平均値を返します。The avg
method returns the average of all items in the collection:
collect([1, 2, 3, 4, 5])->avg();
// 3
コレクションに入れ子の配列やオブジェクトが含まれている場合、どの値の平均を計算するのかを決めるためにキーを指定する必要があります。If the collection contains nested arrays or objects, you should pass a key to use for determining which values to calculate the average:
$collection = collect([
['name' => 'JavaScript: The Good Parts', 'pages' => 176],
['name' => 'JavaScript: The Definitive Guide', 'pages' => 1096],
]);
$collection->avg('pages');
// 636
chunk()
{#collection-method}chunk()
{#collection-method}
chunk
メソッドはコレクションを指定したサイズで複数の小さなコレクションに分割します。The chunk
method breaks the collection into multiple, smaller collections of a given size:
$collection = collect([1, 2, 3, 4, 5, 6, 7]);
$chunks = $collection->chunk(4);
$chunks->toArray();
// [[1, 2, 3, 4], [5, 6, 7]]
このメソッドは特にBootstrapのようなグリッドシステムをビューで操作する場合に便利です。Eloquentモデルのコレクションがあり、グリッドで表示しようとしているところを想像してください。This method is especially useful in views[/docs/{{version}}/views] when working with a grid system such as Bootstrap[http://getbootstrap.com/css/#grid]. Imagine you have a collection of Eloquent[/docs/{{version}}/eloquent] models you want to display in a grid:
@foreach ($products->chunk(3) as $chunk)
<div class="row">
@foreach ($chunk as $product)
<div class="col-xs-4">{{ $product->name }}</div>
@endforeach
</div>
@endforeach
collapse()
{#collection-method}collapse()
{#collection-method}
collapse
メソッドは配列のコレクションをフラットなコレクションに展開します。The collapse
method collapses a collection of arrays into a flat collection:
$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]
contains()
{#collection-method}contains()
{#collection-method}
contains
メソッドは指定したアイテムがコレクションに含まれているかどうかを判定します。The contains
method determines whether the collection contains a given item:
$collection = collect(['name' => 'Desk', 'price' => 100]);
$collection->contains('Desk');
// true
$collection->contains('New York');
// false
さらにcontains
メソッドにはキー/値ペアを指定することもでき、コレクション中に指定したペアが存在するかを確認できます。You may also pass a key / value pair to the contains
method, which will determine if the given pair exists in the collection:
$collection = collect([
['product' => 'Desk', 'price' => 200],
['product' => 'Chair', 'price' => 100],
]);
$collection->contains('product', 'Bookcase');
// false
最後に、contains
メソッドにはコールバックを渡すこともでき、独自のテストを行えます。Finally, you may also pass a callback to the contains
method to perform your own truth test:
$collection = collect([1, 2, 3, 4, 5]);
$collection->contains(function ($key, $value) {
return $value > 5;
});
// false
count()
{#collection-method}count()
{#collection-method}
count
メソッドはコレクションのアイテム数を返します。The count
method returns the total number of items in the collection:
$collection = collect([1, 2, 3, 4]);
$collection->count();
// 4
diff()
{#collection-method}diff()
{#collection-method}
diff
メソッドはコレクションを他のコレクションか、通常のPHP「配列」と比較します。The diff
method compares the collection against another collection or a plain PHP array
:
$collection = collect([1, 2, 3, 4, 5]);
$diff = $collection->diff([2, 4, 6, 8]);
$diff->all();
// [1, 3, 5]
each()
{#collection-method}each()
{#collection-method}
each
メソッドはコレクションのアイテムを繰り返しで処理し、指定したコールバックに各アイテムを渡します。The each
method iterates over the items in the collection and passes each item to a given callback:
$collection = $collection->each(function ($item, $key) {
//
});
コールバックからfalse
を返せばループから抜けます。Return false
from your callback to break out of the loop:
$collection = $collection->each(function ($item, $key) {
if (/* 何かの条件 */) {
return false;
}
});
every()
{#collection-method}every()
{#collection-method}
every
メソッドはn個ごとの要素で構成された新しいコレクションを作成します。The every
method creates a new collection consisting of every n-th element:
$collection = collect(['a', 'b', 'c', 'd', 'e', 'f']);
$collection->every(4);
// ['a', 'e']
オプションとして第2引数にオフセットを渡せます。You may optionally pass offset as the second argument:
$collection->every(4, 1);
// ['b', 'f']
except()
{#collection-method}except()
{#collection-method}
except
メソッドは、キーにより指定したアイテム以外の全コレクション要素を返します。The except
method returns all items in the collection except for those with the specified keys:
$collection = collect(['product_id' => 1, 'name' => 'Desk', 'price' => 100, 'discount' => false]);
$filtered = $collection->except(['price', 'discount']);
$filtered->all();
// ['product_id' => 1, 'name' => 'Desk']
except
の正反対の機能は、onlyメソッドです。For the inverse of except
, see the only[#method-only] method.
filter()
{#collection-method}filter()
{#collection-method}
filter
メソッドは指定したコールバックでコレクションをフィルタリングします。テストでtrueを返したアイテムだけが残ります。The filter
method filters the collection by a given callback, keeping only those items that pass a given truth test:
$collection = collect([1, 2, 3, 4]);
$filtered = $collection->filter(function ($item) {
return $item > 2;
});
$filtered->all();
// [3, 4]
filter
の逆の動作は、rejectメソッドを見てください。For the inverse of filter
, see the reject[#method-reject] method.
first()
{#collection-method}first()
{#collection-method}
first
メソッドは指定された真偽テストをパスしたコレクションの最初の要素を返します。The first
method returns the first element in the collection that passes a given truth test:
collect([1, 2, 3, 4])->first(function ($key, $value) {
return $value > 2;
});
// 3
first
メソッドに引数を付けなければ、コレクションの最初の要素を取得できます。コレクションが空ならnull
が返ります。You may also call the first
method with no arguments to get the first element in the collection. If the collection is empty, null
is returned:
collect([1, 2, 3, 4])->first();
// 1
flatten()
{#collection-method}flatten()
{#collection-method}
flatten
メソッドは多次元コレクションを一次元化します。The flatten
method flattens a multi-dimensional collection into a single dimension:
$collection = collect(['name' => 'taylor', 'languages' => ['php', 'javascript']]);
$flattened = $collection->flatten();
$flattened->all();
// ['taylor', 'php', 'javascript'];
flip()
{#collection-method}flip()
{#collection-method}
flip
メソッドはコレクションのキーと対応する値を入れ替えます。The flip
method swaps the collection's keys with their corresponding values:
$collection = collect(['name' => 'taylor', 'framework' => 'laravel']);
$flipped = $collection->flip();
$flipped->all();
// ['taylor' => 'name', 'laravel' => 'framework']
forget()
{#collection-method}forget()
{#collection-method}
forget
メソッドはキーによりコレクションのアイテムを削除します。The forget
method removes an item from the collection by its key:
$collection = collect(['name' => 'taylor', 'framework' => 'laravel']);
$collection->forget('name');
$collection->all();
// [framework' => 'laravel']
注意: 他のコレクションメソッドとは異なり、
forget
は更新された新しいコレクションを返しません。呼び出しもとのコレクションを更新します。Note: Unlike most other collection methods,forget
does not return a new modified collection; it modifies the collection it is called on.
forPage()
{#collection-method}forPage()
{#collection-method}
forPage
メソッドは指定されたページを表すアイテムで構成された新しいコレクションを返します。The forPage
method returns a new collection containing the items that would be present on a given page number:
$collection = collect([1, 2, 3, 4, 5, 6, 7, 8, 9]);
$chunk = $collection->forPage(2, 3);
$chunk->all();
// [4, 5, 6]
このメソッドではページ番号と、それぞれのページで表示するアイテム数を引数として指定します。The method requires the page number and the number of items to show per page, respectively.
get()
{#collection-method}get()
{#collection-method}
get
メソッドは指定されたキーのアイテムを返します。キーが存在していない場合はnull
を返します。The get
method returns the item at a given key. If the key does not exist, null
is returned:
$collection = collect(['name' => 'taylor', 'framework' => 'laravel']);
$value = $collection->get('name');
// taylor
オプションとして第2引数にデフォルト値を指定することもできます。You may optionally pass a default value as the second argument:
$collection = collect(['name' => 'taylor', 'framework' => 'laravel']);
$value = $collection->get('foo', 'default-value');
// default-value
デフォルト値にコールバックを渡すこともできます。指定したキーが存在していなかった場合、コールバックの結果が返されます。You may even pass a callback as the default value. The result of the callback will be returned if the specified key does not exist:
$collection->get('email', function () {
return 'default-value';
});
// default-value
groupBy()
{#collection-method}groupBy()
{#collection-method}
groupBy
メソッドは指定したキーによりコレクションのアイテムをグループにまとめます。The groupBy
method groups the collection's items by a given key:
$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->toArray();
/*
[
'account-x10' => [
['account_id' => 'account-x10', 'product' => 'Chair'],
['account_id' => 'account-x10', 'product' => 'Bookcase'],
],
'account-x11' => [
['account_id' => 'account-x11', 'product' => 'Desk'],
],
]
*/
文字列でkey
を指定することに加え、コールバックを渡すこともできます。コール―バックはグループとしてまとめるキーの値を返す必要があります。In addition to passing a string key
, you may also pass a callback. The callback should return the value you wish to key the group by:
$grouped = $collection->groupBy(function ($item, $key) {
return substr($item['account_id'], -3);
});
$grouped->toArray();
/*
[
'x10' => [
['account_id' => 'account-x10', 'product' => 'Chair'],
['account_id' => 'account-x10', 'product' => 'Bookcase'],
],
'x11' => [
['account_id' => 'account-x11', 'product' => 'Desk'],
],
]
*/
has()
{#collection-method}has()
{#collection-method}
has
メソッドは指定したキーがコレクションに存在しているかを調べます。The has
method determines if a given key exists in the collection:
$collection = collect(['account_id' => 1, 'product' => 'Desk']);
$collection->has('email');
// false
implode()
{#collection-method}implode()
{#collection-method}
implode
メソッドはコレクションのアイテムを結合します。引数はコレクションのアイテムのタイプにより異なります。The implode
method joins the items in a collection. Its arguments depend on the type of items in the collection.
コレクションに配列化オブジェクトが含まれている場合は、接続したい属性のキーと値の間にはさみたい「糊」の役割の文字列を指定します。If the collection contains arrays or objects, you should pass the key of the attributes you wish to join, and the "glue" string you wish to place between the values:
$collection = collect([
['account_id' => 1, 'product' => 'Desk'],
['account_id' => 2, 'product' => 'Chair'],
]);
$collection->implode('product', ', ');
// Desk, Chair
コレクションが文字列か数値を含んでいるだけなら、メソッドには「糊」の文字列を渡すだけで済みます。If the collection contains simple strings or numeric values, simply pass the "glue" as the only argument to the method:
collect([1, 2, 3, 4, 5])->implode('-');
// '1-2-3-4-5'
intersect()
{#collection-method}intersect()
{#collection-method}
intersect
メソッドは指定した「配列」かコレクションに存在していない値を取り除きます。The intersect
method removes any values that are not present in the given array
or collection:
$collection = collect(['Desk', 'Sofa', 'Chair']);
$intersect = $collection->intersect(['Desk', 'Chair', 'Bookcase']);
$intersect->all();
// [0 => 'Desk', 2 => 'Chair']
見ての通り、結果のコレクションにはオリジナルのコレクションのキーが残ります。As you can see, the resulting collection will preserve the original collection's keys.
isEmpty()
{#collection-method}isEmpty()
{#collection-method}
isEmpty
メソッドはコレクションが空の場合にtrue
を返します。そうでなければfalse
を返します。The isEmpty
method returns true
if the collection is empty; otherwise, false
is returned:
collect([])->isEmpty();
// true
keyBy()
{#collection-method}keyBy()
{#collection-method}
指定したキーをコレクションのキーにします。Keys the collection by the given key:
$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'],
]
*/
同じキーを持つ複数のアイテムがある場合、新しいコレクションには最後のアイテムだけが含まれます。If multiple items have the same key, only the last one will appear in the new collection.
もしくはコールバックを引数に渡し、コレクションのキーにする値返してください。You may also pass your own callback, which should return the value to key the collection by:
$keyed = $collection->keyBy(function ($item) {
return strtoupper($item['product_id']);
});
$keyed->all();
/*
[
'PROD-100' => ['product_id' => 'prod-100', 'name' => 'Desk'],
'PROD-200' => ['product_id' => 'prod-200', 'name' => 'Chair'],
]
*/
keys()
{#collection-method}keys()
{#collection-method}
keys
メソッドはコレクションの全キーを返します。The keys
method returns all of the collection's 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()
{#collection-method}last()
{#collection-method}
last
メソッドは指定したテストをパスしたコレクションの最後のアイテムを返します。The last
method returns the last element in the collection that passes a given truth test:
collect([1, 2, 3, 4])->last(function ($key, $value) {
return $value < 3;
});
// 2
またはlast
メソッドを引数無しで呼び出し、コレクションの最後の要素を取得することもできます。コレクションが空の場合、null
が返ります。You may also call the last
method with no arguments to get the last element in the collection. If the collection is empty, null
is returned:
collect([1, 2, 3, 4])->last();
// 4
map()
{#collection-method}map()
{#collection-method}
map
メソッドコレクション全体を繰り返しで処理し、指定したコールバックから値を返します。コールバックで自由にアイテムを更新し値を返せます。更新したアイテムの新しいコレクションが作成されます。The map
method iterates through the collection and passes each value to the given callback. The callback is free to modify the item and return it, thus forming a new collection of modified items:
$collection = collect([1, 2, 3, 4, 5]);
$multiplied = $collection->map(function ($item, $key) {
return $item * 2;
});
$multiplied->all();
// [2, 4, 6, 8, 10]
注意: 他のコレクションと同様に
map
は新しいコレクションインスタンスを返します。呼び出し元のコレクションは変更しません。もしオリジナルコレクションを変更したい場合はtransform
メソッドを使います。Note: Like most other collection methods,map
returns a new collection instance; it does not modify the collection it is called on. If you want to transform the original collection, use thetransform
[#method-transform] method.
max()
{#collection-method}max()
{#collection-method}
max
メソッドは、指定したキーの最大値を返します。The max
method return the maximum value of a given key:
$max = collect([['foo' => 10], ['foo' => 20]])->max('foo');
// 20
$max = collect([1, 2, 3, 4, 5])->max();
// 5
merge()
{#collection-method}merge()
{#collection-method}
merge
メソッドは引数の配列をコレクションへマージします。配列の文字列キーがコレクションの文字列キーと一致する場合は、コレクションの値がオーバーライトされます。The merge
method merges the given array into the collection. Any string key in the array matching a string key in the collection will overwrite the value in the collection:
$collection = collect(['product_id' => 1, 'name' => 'Desk']);
$merged = $collection->merge(['price' => 100, 'discount' => false]);
$merged->all();
// ['product_id' => 1, 'name' => 'Desk', 'price' => 100, 'discount' => false]
指定した配列のキーが数値の場合、コレクションの最後に追加されます。If the given array's keys are numeric, the values will be appended to the end of the collection:
$collection = collect(['Desk', 'Chair']);
$merged = $collection->merge(['Bookcase', 'Door']);
$merged->all();
// ['Desk', 'Chair', 'Bookcase', 'Door']
min()
{#collection-method}min()
{#collection-method}
min
メソッドは、指定したキーの最小値を返します。The min
method return the minimum value of a given key:
$min = collect([['foo' => 10], ['foo' => 20]])->min('foo');
// 10
$min = collect([1, 2, 3, 4, 5])->min();
// 1
only()
{#collection-method}only()
{#collection-method}
only
メソッドは、コレクション中の指定したアイテムのみを返します。The only
method returns the items in the collection with the specified keys:
$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メソッドです。For the inverse of only
, see the except[#method-except] method.
pluck()
{#collection-method}pluck()
{#collection-method}
pluck
メソッドは指定したキーの全コレクション値を取得できます。The pluck
method retrieves all of the collection values for a given key:
$collection = collect([
['product_id' => 'prod-100', 'name' => 'Desk'],
['product_id' => 'prod-200', 'name' => 'Chair'],
]);
$plucked = $collection->pluck('name');
$plucked->all();
// ['Desk', 'Chair']
さらにコレクションのキー項目も指定できます。You may also specify how you wish the resulting collection to be keyed:
$plucked = $collection->pluck('name', 'product_id');
$plucked->all();
// ['prod-100' => 'Desk', 'prod-200' => 'Chair']
pop()
{#collection-method}pop()
{#collection-method}
pop
メソッドはコレクションの最後のアイテムを削除し、返します。The pop
method removes and returns the last item from the collection:
$collection = collect([1, 2, 3, 4, 5]);
$collection->pop();
// 5
$collection->all();
// [1, 2, 3, 4]
prepend()
{#collection-method}prepend()
{#collection-method}
prepend
メソッドはアイテムをコレクションの最初に追加します。The prepend
method adds an item to the beginning of the collection:
$collection = collect([1, 2, 3, 4, 5]);
$collection->prepend(0);
$collection->all();
// [0, 1, 2, 3, 4, 5]
第2引数を指定し、追加アイテムのキーをセット可能です。You can optionally pass a second argument to set the key of the prepended item:
$collection = collect(['one' => 1, 'two', => 2]);
$collection->prepend(0, 'zero');
$collection->all();
// ['zero' => 0, 'one' => 1, 'two', => 2]
pull()
{#collection-method}pull()
{#collection-method}
pull
メソッドはキーによりアイテムを削除し、そのアイテムを返します。The pull
method removes and returns an item from the collection by its key:
$collection = collect(['product_id' => 'prod-100', 'name' => 'Desk']);
$collection->pull('name');
// 'Desk'
$collection->all();
// ['product_id' => 'prod-100']
push()
{#collection-method}push()
{#collection-method}
push
メソッドはコレクションの最後にアイテムを追加します。The push
method appends an item to the end of the collection:
$collection = collect([1, 2, 3, 4]);
$collection->push(5);
$collection->all();
// [1, 2, 3, 4, 5]
put()
{#collection-method}put()
{#collection-method}
put
メソッドは指定したキーと値をコレクションにセットします。The put
method sets the given key and value in the collection:
$collection = collect(['product_id' => 1, 'name' => 'Desk']);
$collection->put('price', 100);
$collection->all();
// ['product_id' => 1, 'name' => 'Desk', 'price' => 100]
random()
{#collection-method}random()
{#collection-method}
random
メソッドはコレクションからランダムにアイテムを返します。The random
method returns a random item from the collection:
$collection = collect([1, 2, 3, 4, 5]);
$collection->random();
// 4 - (retrieved randomly)
オプションで整数値をrandom
に渡せます。数値が1より大きい場合、アイテムのコレクションが返されます。You may optionally pass an integer to random
. If that integer is more than 1
, a collection of items is returned:
$random = $collection->random(3);
$random->all();
// [2, 4, 5] - (retrieved randomly)
reduce()
{#collection-method}reduce()
{#collection-method}
reduce
メソッドは繰り返しの結果を次の繰り返しに渡しながら、コレクションを単一値へ減らします。The reduce
method reduces the collection to a single value, passing the result of each iteration into the subsequent iteration:
$collection = collect([1, 2, 3]);
$total = $collection->reduce(function ($carry, $item) {
return $carry + $item;
});
// 6
最初の繰り返しの$carry
の値はnull
です。しかし初期値を設定したい場合は、reduce
の第2引数に渡してください。The value for $carry
on the first iteration is null
; however, you may specify its initial value by passing a second argument to reduce
:
$collection->reduce(function ($carry, $item) {
return $carry + $item;
}, 4);
// 10
reject()
{#collection-method}reject()
{#collection-method}
reject
メソッドは指定したコールバックを使用し、コレクションをフィルタリングします。コールバックはコレクションの結果からアイテムを取り除きたい場合にtrue
を返します。The reject
method filters the collection using the given callback. The callback should return true
for any items it wishes to remove from the resulting collection:
$collection = collect([1, 2, 3, 4]);
$filtered = $collection->reject(function ($item) {
return $item > 2;
});
$filtered->all();
// [1, 2]
reject
メソッドの逆の働きについては、filter
メソッドを読んでください。For the inverse of the reject
method, see the filter
[#method-filter] method.
reverse()
{#collection-method}reverse()
{#collection-method}
reverse
メソッドはコレクションのアイテムの順番を逆にします。The reverse
method reverses the order of the collection's items:
$collection = collect([1, 2, 3, 4, 5]);
$reversed = $collection->reverse();
$reversed->all();
// [5, 4, 3, 2, 1]
search()
{#collection-method}search()
{#collection-method}
search
メソッドは指定した値でコレクションをサーチし、見つけたキーを返します。アイテムが見つからない場合はfalse
を返します。The search
method searches the collection for the given value and returns its key if found. If the item is not found, false
is returned.
$collection = collect([2, 4, 6, 8]);
$collection->search(4);
// 1
サーチは「緩い」比較で行われます。厳格な比較を行いたい場合はtrue
をメソッドの第2引数に渡します。The search is done using a "loose" comparison. To use strict comparison, pass true
as the second argument to the method:
$collection->search('4', true);
// false
別の方法としてサーチのコールバックを渡し、テストをパスした最初のアイテムを取得することもできます。Alternatively, you may pass in your own callback to search for the first item that passes your truth test:
$collection->search(function ($item, $key) {
return $item > 5;
});
// 2
shift()
{#collection-method}shift()
{#collection-method}
shift
メソッドはコレクションから最初のアイテムを削除し、その値を返します。The shift
method removes and returns the first item from the collection:
$collection = collect([1, 2, 3, 4, 5]);
$collection->shift();
// 1
$collection->all();
// [2, 3, 4, 5]
shuffle()
{#collection-method}shuffle()
{#collection-method}
shuffle
メソッドはコレクションのアイテムをランダムにシャッフルします。The shuffle
method randomly shuffles the items in the collection:
$collection = collect([1, 2, 3, 4, 5]);
$shuffled = $collection->shuffle();
$shuffled->all();
// [3, 2, 5, 1, 4] // (generated randomly)
slice()
{#collection-method}slice()
{#collection-method}
slice
メソッドは指定したインデックスからコレクションを切り分けます。The slice
method returns a slice of the collection starting at the given index:
$collection = collect([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
$slice = $collection->slice(4);
$slice->all();
// [5, 6, 7, 8, 9, 10]
切り分ける数を制限したい場合は、メソッドの第2引数で指定してください。If you would like to limit the size of the returned slice, pass the desired size as the second argument to the method:
$slice = $collection->slice(4, 2);
$slice->all();
// [5, 6]
sliceは新しい数字のインデックスキーを返します。オリジナルのキーを保持したい場合は、第3引数にtrue
を指定してください。The returned slice will have new, numerically indexed keys. If you wish to preserve the original keys, pass true
as the third argument to the method.
sort()
{#collection-method}sort()
{#collection-method}
sort
メソッドはコレクションをソートします。The sort
method sorts the collection:
$collection = collect([5, 3, 1, 2, 4]);
$sorted = $collection->sort();
$sorted->values()->all();
// [1, 2, 3, 4, 5]
ソート済みのコレクションはオリジナルの配列キーを保っています。上記の例ではvalues
メソッドで連続した数字のインデックスにするためリセットしています。The sorted collection keeps the original array keys. In this example we used the values
[#method-values] method to reset the keys to consecutively numbered indexes.
ネストした配列やオブジェクトのコレクションのソートは、sortBy
とsortByDesc
メソッドを見てください。For sorting a collection of nested arrays or objects, see the sortBy
[#method-sortby] and sortByDesc
[#method-sortbydesc] methods.
より高度なソートを行いたい場合はsort
にコールバックを渡し、自分のアルゴリズムを実行できます。コレクションのsort
メソッドが裏で呼び出しているusort
のPHPドキュメントを参照してください。If your sorting needs are more advanced, you may pass a callback to sort
with your own algorithm. Refer to the PHP documentation on usort
[http://php.net/manual/en/function.usort.php#refsect1-function.usort-parameters], which is what the collection's sort
method calls under the hood.
sortBy()
{#collection-method}sortBy()
{#collection-method}
sortBy
メソッドは指定したキーでコレクションをソートします。The sortBy
method sorts the collection by the given key:
$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],
]
*/
ソート済みのコレクションはオリジナルの配列キーを保っています。上記の例ではvalues
メソッドで連続した数字のインデックスにするためリセットしています。The sorted collection keeps the original array keys. In this example we used the values
[#method-values] method to reset the keys to consecutively numbered indexes.
コレクション値をどのようにソートするかを決めるため、コールバックを渡すこともできます。You can also pass your own callback to determine how to sort the collection values:
$collection = collect([
['name' => 'Desk', 'colors' => ['Black', 'Mahogany']],
['name' => 'Chair', 'colors' => ['Black']],
['name' => 'Bookcase', 'colors' => ['Red', 'Beige', 'Brown']],
]);
$sorted = $collection->sortBy(function ($product, $key) {
return count($product['colors']);
});
$sorted->values()->all();
/*
[
['name' => 'Chair', 'colors' => ['Black']],
['name' => 'Desk', 'colors' => ['Black', 'Mahogany']],
['name' => 'Bookcase', 'colors' => ['Red', 'Beige', 'Brown']],
]
*/
sortByDesc()
{#collection-method}sortByDesc()
{#collection-method}
このメソッドの使い方はsortBy
と同じで、コレクションを逆順にソートします。This method has the same signature as the sortBy
[#method-sortby] method, but will sort the collection in the opposite order.
splice()
{#collection-method}splice()
{#collection-method}
splice
メソッドは指定したインデックスからアイテムをスライスし、削除し、返します。The splice
method removes and returns a slice of items starting at the specified index:
$collection = collect([1, 2, 3, 4, 5]);
$chunk = $collection->splice(2);
$chunk->all();
// [3, 4, 5]
$collection->all();
// [1, 2]
結果の塊の大きさを限定するために、第2引数を指定できます。You may pass a second argument to limit the size of the resulting chunk:
$collection = collect([1, 2, 3, 4, 5]);
$chunk = $collection->splice(2, 1);
$chunk->all();
// [3]
$collection->all();
// [1, 2, 4, 5]
さらに、コレクションから削除したアイテムに置き換える、新しいアイテムを第3引数に渡すこともできます。In addition, you can pass a third argument containing the new items to replace the items removed from the collection:
$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]
sum()
{#collection-method}sum()
{#collection-method}
sum
メソッドはコレクションの全アイテムの合計を返します。The sum
method returns the sum of all items in the collection:
collect([1, 2, 3, 4, 5])->sum();
// 15
コレクションがネストした配列やオブジェクトを含んでいる場合、どの値を合計するのを決めるためにキーを指定してください。If the collection contains nested arrays or objects, you should pass a key to use for determining which values to sum:
$collection = collect([
['name' => 'JavaScript: The Good Parts', 'pages' => 176],
['name' => 'JavaScript: The Definitive Guide', 'pages' => 1096],
]);
$collection->sum('pages');
// 1272
さらに、コレクションのどの項目を合計するのかを決めるためにコールバックを渡すこともできます。In addition, you may pass your own callback to determine which values of the collection to sum:
$collection = collect([
['name' => 'Chair', 'colors' => ['Black']],
['name' => 'Desk', 'colors' => ['Black', 'Mahogany']],
['name' => 'Bookcase', 'colors' => ['Red', 'Beige', 'Brown']],
]);
$collection->sum(function ($product) {
return count($product['colors']);
});
// 6
take()
{#collection-method}take()
{#collection-method}
take
メソッドは指定したアイテム数の新しいコレクションを返します。The take
method returns a new collection with the specified number of items:
$collection = collect([0, 1, 2, 3, 4, 5]);
$chunk = $collection->take(3);
$chunk->all();
// [0, 1, 2]
アイテム数に負の整数を指定した場合はコレクションの最後から取得します。You may also pass a negative integer to take the specified amount of items from the end of the collection:
$collection = collect([0, 1, 2, 3, 4, 5]);
$chunk = $collection->take(-2);
$chunk->all();
// [4, 5]
toArray()
{#collection-method}toArray()
{#collection-method}
toArray
メソッドはコレクションをPHPの「配列」へ変換します。コレクションの値がEloquentモデルの場合は、そのモデルが配列に変換されます。The toArray
method converts the collection into a plain PHP array
. If the collection's values are Eloquent[/docs/{{version}}/eloquent] models, the models will also be converted to arrays:
$collection = collect(['name' => 'Desk', 'price' => 200]);
$collection->toArray();
/*
[
['name' => 'Desk', 'price' => 200],
]
*/
注意:
toArray
はネストしたオブジェクトも全て配列へ変換します。裏の配列をそのまま取得したい場合は、代わりにall
メソッドを使用してください。Note:toArray
also converts all of its nested objects to an array. If you want to get the underlying array as is, use theall
[#method-all] method instead.
toJson()
{#collection-method}toJson()
{#collection-method}
toJson
メソッドはコレクションをJSONへ変換します。The toJson
method converts the collection into JSON:
$collection = collect(['name' => 'Desk', 'price' => 200]);
$collection->toJson();
// '{"name":"Desk","price":200}'
transform()
{#collection-method}transform()
{#collection-method}
transform
メソッドはコレクションを繰り返し処理し、コレクションの各アイテムに指定したコールバックを適用します。コレクション中のアイテムはコールバックから返される値に置き換わります。The transform
method iterates over the collection and calls the given callback with each item in the collection. The items in the collection will be replaced by the values returned by the callback:
$collection = collect([1, 2, 3, 4, 5]);
$collection->transform(function ($item, $key) {
return $item * 2;
});
$collection->all();
// [2, 4, 6, 8, 10]
注意: 他のコレクションメソッドとは異なり、
transform
はコレクション自身を更新します。代わりに新しいコレクションを生成したい場合は、map
メソッドを使用してください。Note: Unlike most other collection methods,transform
modifies the collection itself. If you wish to create a new collection instead, use themap
[#method-map] method.
unique()
{#collection-method}unique()
{#collection-method}
unique
メソッドはコレクションの重複を取り除いた全アイテムを返します。The unique
method returns all of the unique items in the collection:
$collection = collect([1, 1, 2, 2, 3, 4, 2]);
$unique = $collection->unique();
$unique->values()->all();
// [1, 2, 3, 4]
ソート済みのコレクションはオリジナルの配列キーを保っています。上記の例ではvalues
メソッドで連続した数字のインデックスにするためリセットしています。The returned collection keeps the original array keys. In this example we used the values
[#method-values] method to reset the keys to consecutively numbered indexes.
ネストした配列やオブジェクトを取り扱いたい場合は、一意であることを決めるキーを指定する必要があります。When dealing with nested arrays or objects, you may specify the key used to determine uniqueness:
$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'],
]
*/
アイテムが一意であるかを決めるコールバックを渡すこともできます。You may also pass your own callback to determine item uniqueness:
$unique = $collection->unique(function ($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'],
]
*/
values()
{#collection-method}values()
{#collection-method}
values
メソッドはキーをリセットし連続した整数にした新しいコレクションを返します。The values
method returns a new collection with the keys reset to consecutive integers:
$collection = collect([
10 => ['product' => 'Desk', 'price' => 200],
11 => ['product' => 'Desk', 'price' => 200]
]);
$values = $collection->values();
$values->all();
/*
[
0 => ['product' => 'Desk', 'price' => 200],
1 => ['product' => 'Desk', 'price' => 200],
]
*/
where()
{#collection-method}where()
{#collection-method}
where
メソッドは指定したキー/値ペアでコレクションをフィルタリングします。The where
method filters the collection by a given key / value pair:
$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
メソッドは値を厳格に比較します。「緩やか」な比較でフィルタリングしたい場合は、whereLoose
メソッドを使います。The where
method uses strict comparisons when checking item values. Use the whereLoose
[#where-loose] method to filter using "loose" comparisons.
whereLoose()
{#collection-method}whereLoose()
{#collection-method}
このメソッドはwhere
メソッドと同じ使い方をします。全値が「緩やかに」比較される点が異なります。This method has the same signature as the where
[#method-where] method; however, all values are compared using "loose" comparisons.
zip()
{#collection-method}zip()
{#collection-method}
zip
メソッドは指定した配列の値と対応するインデックスのコレクションの値をマージします。The zip
method merges together the values of the given array with the values of the collection at the corresponding index:
$collection = collect(['Chair', 'Desk']);
$zipped = $collection->zip([100, 200]);
$zipped->all();
// [['Chair', 100], ['Desk', 200]]