gpt4 book ai didi

php - 每 3 个元素创建一个多维数组

转载 作者:可可西里 更新时间:2023-11-01 00:26:07 24 4
gpt4 key购买 nike

我有以下数组:

Array {
[0] => text1
[1] => text2
[3] => text3
[4] => text4
...
[200] => text200
}

我如何创建一个 foreach 循环来划分上述数组,以便为​​每 3 个元素创建一个子数组?

Array {
[0] => Array {
[0] => text1
[1] => text2
[2] => text3
}
[1] => Array {
[0] => text4
[1] => text5
[2] => text6
}
......
}

最佳答案

你可以use内置函数,array_chunk()

array_chunk($input_array, 3)

关于php - 每 3 个元素创建一个多维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6321368/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com