0

我正在运行一个 for 循环并尝试将数据输入到数组中。

当我运行数组的 print_r 时,就好像 for 循环只运行一次,而它应该运行多次!

for($i=0; $i<count($count); $i++){
        $currentField = $array[$i];
        $test = "".$field."[".$i."]";
        $this->_postData[$test] = $currentField;
        $this->_currentItems[$i] = $test;
    }

    print_r($this->_currentItems);
    die();

如果我之前回显 $count,它会显示 3(例如),但是当我打印数组时,它只有 1 个值!有任何想法吗?

谢谢。

4

2 回答 2

3

尝试

for($i=0; $i<$count; $i++)
于 2013-04-08T23:17:30.230 回答
1

我认为不需要计数。

尝试

for($i=0; $i<$count; $i++){
于 2013-04-08T23:17:37.573 回答