我坚持这个,我需要完成的事情应该非常简单,但我真的很难找到逻辑。
我需要我的代码来连接一个数组的项目,但最多只有40个,然后用接下来的40个项重新启动循环,依此类推......直到它到达数组的末尾。
这是我到目前为止所得到的,但结果并非我所期待的......
$length = sizeof($array);
$count1 = 0;
while($count1<$length){
$count2 = 0;
while($count2<40){
foreach($array as $array){
$arrayids = $array["id"];
$arrayids .= ",";
//echoing it out to see what the result is...
echo $arrayids;
$count2++;
}
}
$count1++;
}
我的数组看起来像这样,虽然它包含大量的项目:
Array
(
[2] => Array
(
[id] => 4UjZ7mTU
)
[3] => Array
(
[id] => 8UsngmTs
)
[4] => Array
(
[id] => 8UsngmTs
)
)
答案 0 :(得分:0)
你可以在这里轻松使用array_chunk
,然后像这样迭代这些块:
$chunks = array_chunk($array, 40);
foreach($chunks as $chunk) {
foreach ($chunk as $item) {
//code here;
}
}
或者在一个while循环中:
$MAX = 3;
$LIST = [1,2,3,4,5,6,7,8,9,10];
$i = 0;
$n = count($LIST);
while ($i < $n) {
$base = floor($i/ $MAX);
$offset = $i % $MAX;
echo $LIST[($base * $MAX) + $offset];
$i++;
}
答案 1 :(得分:0)
你拼写&#34; $ lenght&#34;第1行是错误的。那是什么给你意想不到的结果?
答案 2 :(得分:0)
不是按照你的方式去做,也许你应该把你的阵列分块。例如:
<?php
// Create a similar data format.
foreach(range(1,20) as $num)
$data[]=['id' => $num];
// Output example format for the reader.
var_export(array_slice($data, 0, 3));
$ids = array_column($data, 'id');
// Now let's chunk the ids into fours
foreach(array_chunk($ids, 4) as $chunk)
echo "\n" . implode(' ', $chunk);
输出:
array (
0 =>
array (
'id' => 1,
),
1 =>
array (
'id' => 2,
),
2 =>
array (
'id' => 3,
),
)
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16
17 18 19 20