Skip to content

splitIn

将集合分为给定数量的组。

php
collect([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])->splitIn(3);

// [[1, 2, 3, 4], [5, 6, 7, 8], [9, 10]]

相关方法