通过PHP下载OpenOffice PDF

时间:2015-08-12 08:09:50

标签: php pdf

我有一个问题: 下载使用OpenOffice创建的PDF总是"空白"。 这是代码:

$filename = "test.pdf";
header("Content-Type: application/pdf");
header("Content-Disposition: attachment; filename=\"test.pdf\"");
$file = file($filename);
foreach($file AS $fileshow)
{
    print $fileshow;
}
exit();

其他来源的PDF文章就像魅力一样。 我错了什么?

0 个答案:

没有答案