如何分隔每个x成员的数组?

时间:2017-06-04 13:59:13

标签: php arrays

我想每3个成员分隔一个数组并将它们放入不同的数组

$array = array("hi", "hello", "sup", "example", "something", "ksikikikfr", "frefre");

$output1 = array("hi", "hello", "sup");
$output2 = array("example", "something", "ksikikikfr");
$output3 = array("frefre");

这是我想要的,提前谢谢

1 个答案:

答案 0 :(得分:2)

使用array_chunk创建大小为3的块:

$chunks = array_chunk($array, 3);
print_r($chunks);