我试过dd($ inserts),但它显示“[]”。这是我控制器中的代码。
public function importExcel()
{
$path = Input::file('import_file')->getRealPath();
$inserts = [];
Excel::load($path, function($reader) use ($inserts) {
foreach ($reader->toArray() as $rows) { // <-- $rows pertains to array of rows
foreach($rows as $row) { // <-- $row pertains to the row itself
$inserts[] = ['title' => $row['title'], 'description' => $row['description']];
}
}
});
dd($inserts);
return back();
}
答案 0 :(得分:1)
由于您似乎有“行”而不是“行”,因此您需要再次遍历这些行。
Excel::load($path, function($reader) use ($inserts) {
foreach ($reader->toArray() as $rows) { // <-- $rows pertains to array of rows
foreach($rows as $row) { // <-- $row pertains to the row itself
$inserts[] = ['title' => $row['title'], 'description' => $row['description']];
}
}
});
其实你可以这样做。
$rows = $reader->toArray();
foreach($rows as $row) { // <-- $row pertains to the row itself
$inserts[] = ['title' => $row['title'], 'description' => $row['description']];
}
或者,如果你想坚持使用get
,我认为它会返回一个集合。
$rows = $reader->get();
foreach($rows as $row) {
$inserts[] = ['title' => $row->title, 'description' => $row->description];
}
<强>更新强>
要反映$inserts
数组的修改,您需要传递其引用。
function($reader) use (&$inserts) {
// ^-- add this to pass its reference.