袁来如此的工作笔记
袁来如此的工作笔记
竹杖芒鞋轻胜马,谁怕? 一蓑烟雨任平生。

PHPExcel输出错误Could not close zip file php://output

浏览量:861

what:

PHPExcel输出Excel2007出错:

显示:“Uncaught exception 'PHPExcel_Writer_Exception' with message 'Could not close zip file php://output.'”

blob.png


why:

代码中的 $objWriter->save("php://output"); 导致错误


how:

function SaveViaTempFile($objWriter){
        $filePath = '' . rand(0, getrandmax()) . rand(0, getrandmax()) . ".tmp";
        $objWriter->save($filePath);
        readfile($filePath);
        unlink($filePath);
    }


用上面的代码替换save方法即可 SaveViaTempFile($objWriter);

打赏