nth方法

创建由每隔n个元素组成一个新的集合。

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

$collection->nth(4); // ['a', 'e']

也可以选择传入一个偏移位置作为第二个参数

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

$collection->nth(4, 1);// ['b', 'f']
Copyright © http://blog.webfsd.com 2018 all right reserved,powered by Gitbook该文件修订时间: 2019-05-21 04:55:26

results matching ""

    No results matching ""