laravel 基础教程 —— 集合

集合

简介

Illuminate\Support\Collection 类提供了对数组数据流利操作的封装。比如,看下面的延时代码。我们会使用 collect 帮助方法从一个数组中创建一个新的集合实例,然后运行 strtoupper 方法转为大写再剔除集合中的空元素:

$collection = collect(['taylor', 'abigail', null])->map(function ($name) {
  return strtoupper($name); 
})
->reject(function ($name) {
  return empty($name);
});

就如你所看到的,Collection 类允许你链式的调用它的方法,就是这样提供了一种流利的映射的执行能力的同时缩小了底层的数组。通常情况下,所有的 Collection 方法都会返回一个全新的 Collection 实例。

创建集合

就如上面的代码,collect 帮助方法会根据给定的数组返回一个新的 Illuminate\Support\Collection 实例。所以,创建一个集合是非常的简单:

$collection = collect([1, 2, 3]);

默认的,Eloquent 模型集合总是返回 Collection 的实例。事实上,你可以在你的应用中任意位置使用 Collection 类。

可用的方法

在文档的余下部分,我们将探讨 Collection 类中所有可用的方法。你应该记住,所有的这些方法都可以链式调用来流利的操作底层的数组。另外,几乎每一个方法都会返回一个新的 Collection 实例,这允许你可以在必要时保存原始的集合。

方法名单

all()

all 方法会简单的返回集合中所包含的底层数组:

collect([1, 2, 3])->all();

// [1, 2, 3]

avg()

avg 方法会返回集合中所有项的平均值:

collect([1, 2, 3, 4, 5])->avg();

// 3

如果集合中包含的是嵌套的数组或者对象,你应该传递 key 来表明所需要计算的值的平均值:

$collection = collect([
  ['name' => 'JavaScript: The Good Parts', 'pages' => 176],
  ['name' => 'JavaScript: The Definitive Guide', 'pages' => 1096],
]);

$collection->avg('pages');

// 636

chunk()

chunk 方法会根据给定的大小来将集合分割成多个小的集合:

$collection = collect([1, 2, 3, 4, 5, 6, 7]);

$chunks = $collection->chunk(4);

$chunks->toArray();

// [[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

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]

combine()

combine 方法会将一个集合中的 keys 和另外一个集合或数组中的 values 相结合:

$collection = collect(['name', 'age']);

$combined = $collection->combine(['George', 29]);

$combined->all();

// ['name' => 'George', 'age' => 29]

contains()

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 方法来提供自己的真值判断逻辑:

$collection = collect([1, 2, 3, 4, 5]);

$collection->contains(function ($key, $value) {
  return $value > 5; 
}); 

// false

count()

count 方法会返回集合中项目的总数:

$collection = collect([1, 2, 3, 4]);

$collection->count();

// 4

diff()

diff 方法用来比较集合中存在而其他集合或者原生 PHP 的数组不存在的值:

$collection = collect([1, 2, 3, 4, 5]);

$diff = $collection->diff([2, 4, 6, 8]);

$diff->all();

// [1, 3, 5]

diffKeys()

diffKeys 方法用来比较集合中存在而其他集合或原生 PHP 数组不存在的键:

$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]

each()

each 方法会迭代集合中的每一项,并将该项传递给所给定的回调:

$collection = $collection->each(function ($item, $key) {
  // 
});

在回调中返回 `false` 将会中断迭代:

```php
$collection = $collection->each(function ($item, $key) {
  if (/* some condition */) {
    return false;
  } 
}); 

every()

every 方法会创建一个由每第 N 个元素(包含起始位)所组成的集合:

$collection = collect(['a', 'b', 'c', 'd', 'e', 'f']);

$collection->every(4);

// ['a', 'e']

你可以传递第二个参数来设置位移:

$collection->every(4, 1);

// ['b', 'f']

except()

except 方法返回集合中的项,并在项目中剔除选定的键:

$collection = collect(['product_id' => 1, 'name' => 'Desk', 'price' => 100, 'discount' => false]);

$filtered = $collection->except(['price', 'discount']);

$filtered->all();

// ['product_id' => 1, 'name' => 'Desk']

filter()

filter 方法会根据给定的回调的迭代结果进行过滤,如果回调返回的是真值,该项将会被保留:

$collection = collect([1, 2, 3, 4]);

$filtered = $collection->filter(function ($value, $key) {
  return $value > 2; 
});

$filtered->all();

// [3, 4]

rejct 方法与 filter 方法相反。

first()

first 方法会返回集合中第一个回调返回真值的项:

collect([1, 2, 3, 4])->first(function ($key, $value) {
  return $value > 2; 
});

// 3

你也可以调用无参数的 first 方法,该方法会返回集合中的第一个元素。如果集合是空的,则会返回 null

collect([1, 2, 3, 4])->first();

// 1

flatMap()

flatMap 方法会迭代处理所有元素,并将处理后的集合进行扁平化处理(从多维降为一维):

$collection = collect(
  ['name' => 'Sally'],
  ['school' => 'Arkansas'],
  ['age' => 28]
);

$flattened = $collection->flatMap(function ($values) {
  return 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'];

你也可以传递一个“深度”参数到方法:

$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', 'GalaxyS7', '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');

$collection->all();

// ['framework' => 'laravel']

注意: 不像其他的集合方法,forget 方法不会返回一个新的修改后的集合,它会直接修改当前的集合。

forPage()

forPage 方法将返回给定当前页所包含的项的集合:

$collection = collect([1, 2, 3, 4, 5, 6, 7, 8, 9]);

$chunk = $collection->forPage(2, 3);

$chunk->all();

// [4, 5, 6]

该方法需要传递当前页的数值及每页所包含的数目。

get()

get 方法将根据给定的键从集合中返回项,如果给定键不存在,则返回 null:

$collection = collect(['name' => 'taylor', 'framework' => 'laravel']);

$value = $collection->get('name');

// taylor

你可以传递第二个参数来作为默认值:

$collection = collect(['name' => 'taylor', 'framework' => 'laravel']);

$value = $collection->get('foo', 'default-value');

// default-value

你也可以传递一个回调作为默认值。回调的结果将会被作为未找到键时的默认值:

$collection->get('email', function () {
  return 'default-value'; 
});

// default-value

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->toArray();

/*
  [
    'account-x10' => [
      ['account_id' => 'account-x10', 'product' => 'Chair'],
      ['account_id' => 'account-x10', 'product' => 'Bookcase'],
    ],
    'account-x11' => [
      ['account_id' => 'account-x11', 'prodcut' => 'Desk'],
    ],
  ]
 */

除了传递一个字符串 key 之外,你也可以传递一个回调函数。回调函数应该返回你所期望进行分组的键的值:

$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()

has 方法用来判断集合中是否存在给定的键:

$collection = collect(['account_id' => 1, 'product' => 'Desk']);

$collection->has('email');

// false

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'

intersect()

intersect 方法返回给定数组与集合的交集:

$collection = collect(['Desk', 'Sofa', 'Chair']);

$intersect = $collection->intersect(['Desk', 'Chair', 'Bookcase']);

$intersect->all();

// [0 => 'Desk', 2 => 'Chair']

就如你所看到的,结果集合将保留原始集合的键。

isEmpty()

isEmpty 方法用来判断集合是否为空,如果集合为空,则返回 true,否则返回 false

collect([])->isEmpty();

// true

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 ($item) {
  return strtoupper($imte['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 ($key, $value) {
  return $value < 3; 
});

// 2

你也可以调用无参数的 last 方法,它将返回集合中最后一个元素,如果集合为空,则返回 null:

collect([1, 2, 3, 4])->last();

// 4

map()

map 方法会使用给定的回调来进行迭代集合中的所有项,在回调函数中可以自由的修改该项并进行返回,这样新的集合将包含修改后的值:

$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 方法。

max()

max 方法返回给定键中最大的值:

$max = collect([['foo' => 10], ['foo' => 20]])->max('foo');

// 20

$max = collect([1, 2, 3, 4, 5])->max();

// 5

merge()

merge 方法会合并给定的数组到集合。数组中的值将会覆盖集合中相同键的值:

$colletion = collect(['product_id' => 1, 'name' => 'Desk']);

$merged = $collection->merge(['price' => 100, 'discount' => false]);

$merged->all();

// ['product_id' => 1, 'name' => 'Desk', 'price' => 100, 'discount' => false]

如果给定的数组的键是数值,则它的值将会被追加在集合的末尾:

$collection = collect(['Desk', 'Chair']);

$merged = $collection->merge(['Bookcase', 'Door']);

$merged->all();

// ['Desk', 'Chair', 'Bookcase', 'Door']

min()

min方法会返回集合中给定键的最小值:

$min = collect([['foo' => 10], ['foo' => 20]])->min('foo');

// 10

$min = collect([1, 2, 3, 4, 5])->min();

// 1

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']

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']

pop()

pop 方法将从集合中剔除最后一个元素:

$collection = collect([1, 2, 3, 4, 5]);

$collection->pop();

// 5

$collection->all();

// [1, 2, 3, 4]

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]

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 - (ertrieved randomly)

你也可以传递一个整型值到 random。如果整型值大于 1。则相应个数的随机项将会被返回:

$random = $collection->random(3);

$random->all();

// [2, 4, 5] - (retrieved randomly)

reduce()

reduce 方法将会缩小集合收集单个值。它会通过迭代的方式将其值传递给随后的迭代器:

$collection = collect([1, 2, 3]);

$total = $collection->reduce(function ($carry, $item) {
  return $carry + $item; 
});

// 6

上面的 $carry 在第一个迭代器中将会是 null;你也可以指定一个起始值到第二个参数:

$collection->reduce(function ($carry, $item) {
  return $carry + $item;
}, 4);

// 10

reject()

reject 方法使用给定的回调从集合中返回过滤的值。你需要在回调中返回 true 来让其从结果中移除:

$collection = collect([1, 2, 3, 4]);

$filtered = $collection=>reject(function ($value, $key) {
  return $value > 2;
});

$filtered->all();

// [1, 2]

reverse()

reverse 方法会逆序排列集合中的项目:

$collection = collect([1, 2, 3, 4, 5]);

$reversed = $collection->reverse();

$reversed->all();

// [5, 4, 3, 2, 1]

search()

search 方法根据给定的值搜索集合中的项,如果找到则返回该项的键,如果未找到则返回 false:

$collection = collect([2, 4, 6, 8]);

$collection->search(4);

// 1

搜索使用的是疏松的比较,如果需要进行严格比较,你应该传递 true 作为第二个参数:

$collection->search('4', true);

// false

另外,你也可以传递一个回调作为搜索的结果判断依据,在回调中首个返回真值的项目将会被检索到:

$collection->search(function ($item, $key) {
  return $item > 5; 
});

// 2

shift()

shift 方法会从集合中返回首个元素的同时从集合中剔除:

$collection = collect([1, 2, 3, 4, 5]);

$collection->shift();

// 1

$collection->all();

// [2, 3, 4, 5]

shuffle()

shuffle 方法随机打乱集合中项目的顺序:

$collect = collect([1, 2, 3, 4, 5]);

$shuffled = $collection->shuffle();

$shuffled->all();

// [3, 2, 5, 1, 4] // (generated randomly)

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]

返回的切片将会有一个新的数字索引键。如果你想要保留原数组的键,你需要传递 true 到第三个参数。

sort()

sort 方法将对集合进行排序:

$collection = collect([5, 3, 1, 2, 4]);

$sorted = $collection->sort();

$sorted->values()->all();

// [1, 2, 3 ,4 ,5]

被排序的集合会保留原始的数组键。上面的例子中我们使用了 values 方法来重置了键到连续的数字索引。

对于嵌套的数组或者对象的排序,请参照 sortBysortByDesc 方法。

如果你的排序需要更多的逻辑支持,你可以传递一个回调到 sort 方法。你可以参考 PHP 文档的 usort, 集合的 sort 方法就是在基于该方法的。

sortBy()

sortBy 方法根据给定的键进行集合排序:

$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 方法来重置了键到连续的数字索引。

你也可以传递你自己的回调作为排序的逻辑依靠:

$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()

该方法与 sortBy 方法有相同的运作方式,但是它是以集合中相反的顺序进行排序。

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]

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 ($product) {
  return count($product('colors')) 
});

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]

toArray()

toArray 方法会将集合退化为原生的 PHP 数组。如果集合的值列是 Eloquent 模型。模型也会被转化为数组:

$collection = collect(['name' => 'Desk', 'price' => 200]);

$collection->toArray();

/*
  [
    ['name' => 'Desk', 'price' => 200],
  ]
 */

注意:toArray 也会转化所有的嵌套的对象到数组。如果你希望得到底层的原始数组,你可以使用 all 方法。

toJson()

toJson 方法转化集合到 JSON:

$collection = collect(['name' => 'Desk', 'price' => 200]);

$collection->toJson();

// '{"name":"Desk","price":200}'

transform()

transform 通过一个回调函数迭代处理集合中的项目。集合中的项目会在被迭代的结果所替换:

$collection = collect([1, 2, 3, 4, 5]);

$collection->transform(function ($item, $key) {
  return $item * 2; 
});

$collection->all();

// [2, 4, 6, 8, 10]

注意:不像其他的集合方法,transform 会修改原始的集合自身。如果你希望创建一个新的集合来替代,请使用 map 方法。

union()

union 方法添加给定的数组到集合。如果给定的数组中包含的键在集合中已经存在,那么集合中的键将会被保留:

$collection = collect([1 => ['a'], 2 => ['b']]);

$union = $collection->union([3 => ['c'], 1 => ['b']]);

$union->all();

// [1 => ['a'], 2 => ['b'], 3 => ['c']]

unique()

unique 方法将返回所有在集合中具有独特性(去重)的项目:

$collection = collect([1, 1, 2, 2, 3, 4, 2]);

$unique = $collection->unique();

$unique->values()->all();

// [1, 2, 3, 4]

返回的集合中保留了原始的数组键,上面的例子用使用了 values 方法来重置键到连续的数组索引。

当对嵌套的数组或者对象进行运算时,你应该制定一个键来进行唯一性的判定:

$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 = $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()

values 方法返回一个键经过重置成连续整型索引的新集合:

$collection = collect([
  10 => ['product' => 'Desk', 'price' => 200],
  11 => ['product' => 'Desl', 'price' => 200],
]);

$values = $collection->values();

$values->all();

/*
  [
    0 => ['product' => 'Desk', 'price' => 200],
    1 => ['product' => 'Desk', 'price' => 200],
  ]
 */

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 方法会使用严格的比较模式。你可以使用 whereLoose 方法来使用疏松的比较模式。

whereLoose()

whereLoose

该方法与 where 方法的运作相同,只是其比较值的方式是疏松模式。

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' => 'Bookcase', 'price' => 150],
    ['product' => 'Desk', 'price' => 200],
  ]
 */

whereIn 方法使用的是严格的比较模式,如果你需要使用疏松的比较模式请使用 whereInLoose 方法。

whereInLoose()

该方法与 whereIn 方法的运作相同,只是其使用的是疏松的比较模式。

zip()

zip 方法会根据相应的索引将给定的数组中的值与集合中项目的值进行合并:

$collection = collect(['Chair', 'Desk']);

$zipped = $collection->zip([100, 200]);

$zipped->all();

// [['Chair', 100], ['Desk', 200]]
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,236评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,867评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,715评论 0 340
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,899评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,895评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,733评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,085评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,722评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,025评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,696评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,816评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,447评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,057评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,009评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,254评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,204评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,561评论 2 343

推荐阅读更多精彩内容

  • 翻译自“Collection View Programming Guide for iOS” 0 关于iOS集合视...
    lakerszhy阅读 3,823评论 1 22
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,598评论 18 139
  • 第5章 引用类型(返回首页) 本章内容 使用对象 创建并操作数组 理解基本的JavaScript类型 使用基本类型...
    大学一百阅读 3,211评论 0 4
  • 一个女生最好等到三十岁再嫁人,因为只有在三十岁,男人才知道自己要什么不要什么,才成熟,不然一个大姐姐娶个小弟弟,那...
    简儿的十年阅读 197评论 12 8
  • 偶是星爷阅读 647评论 0 0