phpexcel 导入超过26列时的解决方案
Posted 一个永
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了phpexcel 导入超过26列时的解决方案相关的知识,希望对你有一定的参考价值。
$highestColumn = $sheet->getHighestColumn(); // 取得总列数 ++$highestColumn; for ($row = 5; $row <= $highestRow; $row++) { $rowData = array(); for ($column = ‘A‘; $column != $highestColumn; $column++) { $columnData = $sheet->getCell($column . $row)->getValue(); } }
两处改动:1、++$highestColumn;2、$column != $highestColumn;
以上是关于phpexcel 导入超过26列时的解决方案的主要内容,如果未能解决你的问题,请参考以下文章
phpexcel导出excel的数据超过26列怎么办 Invalid cell coordinate [1(THINKPHP3.2中开发遇到的)