未定义的变量php

时间:2015-12-28 06:43:56

标签: php

我正在使用api来获取通过csv文件扫描的目录中项目的等级。随之而来的是与我合作的api。我将数据放在一个数组中并准备导入到API中,但是当我尝试引用变量时,它会给出一个错误,即变量未定义。 以下是一些示例代码:

<?php
//File that has the Variables $groupedArrays defined as an array
for($i = 0; $i < (count($groupedArrays) - 0); $i++){
//Include or require the script since it has to run multiple times.
}
//File that references the variable
$code = $groupedArrays[$i];
?>

我很感激帮助。提前谢谢!

1 个答案:

答案 0 :(得分:1)

您需要将此行放在foreach循环中 $code = $groupedArrays[$i];

感谢。