我有一个问题: 下载使用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文章就像魅力一样。 我错了什么?