我有一个数组,我正在循环遍历并分解为 50 个块。但是,有时该数组中的项目数超过了 50 个块中的项目数,例如:
$array = array(); // has 220 rows
for ($i = 0; $i < count($array); $i++) {
$j[] = $i;
if ($i % 50 == 1) {
print_r($j); // do something here with the 50 rows
$j = null;
}
}
这里的问题是这不会在201
. 我知道解决这个问题涉及一些代数数学,但我正在画一个空白。像这样的时代,我真希望我在高中的数学课上能集中注意力。