有没有一种方法可以使用PHPPresentation下载pptx文件?

时间:2019-08-20 12:42:05

标签: php phppresentation

我第一次使用PHPPresentation,并且一切正常,但是我不想将文件保存到某个目标位置,我想通过Web浏览器下载该文件。该怎么做?

请帮助。

这是用于将文件保存到某个目标位置的代码

$oWriterPPTX = IOFactory::createWriter($objPHPPresentation, 'PowerPoint2007');
$oWriterPPTX->save(__DIR__ . "/sample.pptx");

2 个答案:

答案 0 :(得分:0)

PHPPresentation应该类似于PHPExcel。

根据this个问题,您可以使用:

$oWriterPPTX->save('php://output');

答案 1 :(得分:0)

尝试此代码

 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');
相关问题