带有PHPPowerpoint问题的PHP readfile

时间:2014-02-05 13:54:10

标签: php powerpoint readfile phppowerpoint

我使用PHPPowerpoint创建带有一些图表的pptx文件,并且将它存储在与PHP脚本相同的文件夹中没有问题。 PHPPowerpoint就是这样做的。

我想在创建后下载pptx文件,到目前为止,我已经尝试了我可以在网络上找到的每个选项。这就是我尝试做atm。:

$file = str_replace('generate_report.php', 'export_download.pptx', __FILE__);
header('Content-Description: File Transfer');
header('Content-disposition: attachment; filename="' . $file . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Type: application/vnd.openxmlformats-officedocument.presentationml.presentation');
header('Expires: 0');
header('Cache-Control: ');
header('Pragma: ');
flush();
ob_clean();
readfile($file);

执行脚本时没有下载任何内容。我的pptx是在服务器上创建的,我可以打开它,没问题。但它不会下载该文件。我从这个帖子中获得了内容类型:What is a correct mime type for docx, pptx etc?。我也试过很多其他类型。当我控制日志我的响应时,我得到一个奇怪的字符串(非常长),从这样开始:PKCTDD [Content_Types].xml͗ n 0E |E -J * X + mwBhE

还试过这个:

$handle = fopen($file, 'rb');
$buffer = '';
while (!feof($handle)) {
$buffer = fread($handle, 4096);
echo $buffer;
ob_flush();
flush();
}
fclose($handle);

有谁可以提供帮助?

1 个答案:

答案 0 :(得分:2)

以下标题应该有效;并且最好直接流式传输到php://output而不是保存到磁盘文件然后将该磁盘文件假脱机到浏览器

// Redirect output to a client’s web browser
header('Content-Type: application/vnd.openxmlformats-officedocument.presentationml.presentation');
header('Content-Disposition: attachment;filename="' . $file . '"');
header('Cache-Control: max-age=0');
// If you're serving to IE 9, then the following may be needed
header('Cache-Control: max-age=1');

// If you're serving to IE over SSL, then the following may be needed
header ('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past
header ('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); // always modified
header ('Cache-Control: cache, must-revalidate'); // HTTP/1.1
header ('Pragma: public'); // HTTP/1.0

$objWriter = PHPPowerPoint_IOFactory::createWriter($objPHPPowerPoint, 'PowerPoint2007');
$objWriter->save('php://output');