我第一次使用 PHPPresentation,一切正常,但我不想将文件保存到某个目的地,我想通过网络浏览器下载该文件。怎么做?
请帮忙。
这是将文件保存在某个目的地的代码
$oWriterPPTX = IOFactory::createWriter($objPHPPresentation, 'PowerPoint2007');
$oWriterPPTX->save(__DIR__ . "/sample.pptx");
我第一次使用 PHPPresentation,一切正常,但我不想将文件保存到某个目的地,我想通过网络浏览器下载该文件。怎么做?
请帮忙。
这是将文件保存在某个目的地的代码
$oWriterPPTX = IOFactory::createWriter($objPHPPresentation, 'PowerPoint2007');
$oWriterPPTX->save(__DIR__ . "/sample.pptx");
试试这个代码
header("Content-Type: application/vnd.openxmlformats-officedocument.presentationml.presentation");
header("Content-Disposition: attachment; filename=test.pptx");
$oWriterPPTX = IOFactory::createWriter($this->objPhpPresentation,'PowerPoint2007' );
$oWriterPPTX->save('php://output');