我有通过PHPExcel将xls转换为xlsx的代码:
$objPHPexcel = PHPExcel_IOFactory::load('file.xlsx');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPexcel, 'Excel5');
$objWriter->save('new_file.xls');
但是当我打开创建的xls文件时,一些单元格是空的。 可能是什么问题呢? 谢谢!
答案 0 :(得分:1)
you should use one of following as formate type.
1)Excel5 -> file format between Excel Version 95 to 2003
2)Excel2003XML -> file format for Excel 2003
3)Excel2007 -> file format for Excel 2007
and add following line at line no.3 in your code before save file statement.
$fileType=PHPExcel_IOFactory::identify("file.xlsx"); //We can get file reader type automatically using
it generate file as per your requirement.
答案 1 :(得分:0)
我注意到其中一些单元格包含对外部文件的引用,例如单元格A23
包含
='[Форма 1-2 от 15.12 ЯНВАРЬ екат.xls]НТТЗМ'!A77
逻辑上,PHPExcel不能简单地访问该外部文件(Форма 1-2 от 15.12 ЯНВАРЬ екат.xls
)来检索数据;它也不能处理对外部文件的引用......文件甚至可能不存在;如果确实如此,那么在加载(递归)每个可能在公式中引用的外部文件时会产生很大的开销。
虽然您尚未指出新保存的文件中哪些单元格可能为空白,但我猜他们是包含这些外部文件引用的单元格