时间:2021-07-01 10:21:17 帮助过:7人阅读
for($s = 0;$s<$sheetCount;$s++) {
$currentSheet = $_phpExcel->getSheet($s);
$allColumn = $currentSheet->getHighestColumn();
$allRow = $currentSheet->getHighestRow();
for($r = 1;$r<=$allRow;$r++){
for($currentColumn='A';$currentColumn<=$allColumn;$currentColumn++){
$address = $currentColumn.$r;
$newExcel[] = $currentSheet->getCell($address)->getValue();
}
}
}
后面就是对数组的操作了--不过要先下载好phpexcel,并包含进来
http://www.bkjia.com/PHPjc/328155.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/328155.htmlTechArticle 代码如下:$this-loadexcel();//半酣phpexcel文件 $_ReadExcel = new PHPExcel_Reader_Excel2007(); if(!$_ReadExcel-canRead('link.xls')){ $_ReadExcel = new PHPExcel_...