我正在使用phpexcel创建一个xlsx文件.我的文件中有很多公式.下载文件后,某些公式单元格(并非全部)显示为空白,直到我单击“启用编辑”选项.
我正在使用以下代码:
$objPHPExcel = new PHPExcel();
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="'.$xlsName.'"');
header('Cache-Control: max-age=0');
$objWriter->save('php://output');
对于使用早期Office版本且没有启用编辑选项的用户,会出现此问题.对于他们,这些单元格显示为空白.
解决方法:
我在其他地方遇到了这个答案.如果有人在寻找答案.
$spreadsheet = new \PHPExcel();
$writer = new \PHPExcel_Writer_Excel2007($spreadsheet);
//Do things with the $spreadsheet
//This is the solution, do it before saving
$writer->setPreCalculateFormulas();
$writer->save($saving_filepath);