phpexcel没有正确阅读表格

时间:2016-12-22 06:13:44

标签: php excel phpexcel xlsx

我正在使用phpexcel 1.8来读取包含92行的.xlsx文件。但结果我只得到一排。然后我打开了文件&使用libre office& amp;进行了一些编辑然后我试图保存文件&出现了一个选项"使用Microsoft Excel 2007/2010/2013 XML格式" &安培;我点击了它&保存了文件。

然后我通过使用phpexcel读取文件得到正确的结果。可能有什么不对?任何帮助将不胜感激。

我使用的代码是:

        $inputFileName = 'test.xlsx';
        try {
            $objPHPExcel = PHPExcel_IOFactory::load($inputFileName);
        } catch (Exception $e) {    
            die('Error loading file "' . pathinfo($inputFileName, PATHINFO_BASENAME) . '": ' . $e->getMessage());
        }

        $highRow = $objPHPExcel->setActiveSheetIndex(0)->getHighestRow();
        $highColumn = $objPHPExcel->setActiveSheetIndex(0)->getHighestColumn();

提前致谢!

0 个答案:

没有答案