PHPExcel到html给出了空单元格

时间:2015-06-05 15:28:31

标签: php html phpexcel xlsx

我使用PHPExcel库将上传的.xlsx文件转换为html页面。

代码可以工作,但html页面中还有很多空单元格。我能做什么,PHPExcel不会创建这些?

转换

$inputFileName = $upload_dir;
$objPHPExcel = PHPExcel_IOFactory::load($inputFileName);
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'HTML');
$objWriter->save($basename.".html");

结果 enter image description here

0 个答案:

没有答案