当我运行以下
时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数组中的所有行存储到子数组中,键是机构名称。