错误:脚本标头过早结束:php5

时间:2014-11-26 22:21:27

标签: php arrays

当我运行以下

foreach($csv as $row) {
if (!in_array($row[2], $institutions)) {
  $institutions[$row[2]] = $row;
}

我没有错误,但是当我运行

foreach($csv as $row) {
if (!in_array($row[2], $institutions)) {
  $institutions[$row[2]][] = $row;
}
}

我收到此错误

Premature end of script headers: php5

我的代码出了什么问题?我要做的是将$ csv数组中的所有行存储到子数组中,键是机构名称。

0 个答案:

没有答案