every(size, offset)每隔几个元素为一组,返回这组的偏移元素
$collection = collect(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k']);
// size=3, offset=0
return $collection->every(3, 0); // ['a', 'd', 'g', 'k']
// size=3, offset=1
return $collection->every(3, 1); // ['b', 'e, 'h']
网友评论