我有这个 excel 文件创建器库 ( http://phpexcel.codeplex.com/ ),它在我的 Ubuntu 中工作以制作xlsx
文件。
但是当把这个工作版本放在主服务器(CentOS 和 RHEL 6.4)中时,会导致文件不显示$objWriter->save('php://output');
,也不会在日志文件中抛出任何错误。
根本无法在浏览器中创建文件和转储。(在 ZF1 , PHP5 下尝试)
$objPHPExcel = new PHPExcel();
.....
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
ob_end_clean();
$objWriter->save('php://output');