Heim > Artikel > Backend-Entwicklung > php读取excel文件的简单实例_PHP教程
for($s = 0;$s $currentSheet = $_phpExcel->getSheet($s);
$allColumn = $currentSheet->getHighestColumn();
$allRow = $currentSheet->getHighestRow();
for($r = 1;$r
for($currentColumn='A';$currentColumn $address = $currentColumn.$r;
$newExcel[] = $currentSheet->getCell($address)->getValue();
}
}
}