0

我在magento 1.7中尝试过如下

 $pdf = new Zend_Pdf(); 
  ....
  ....
 $pdfString = $pdf->render();
 header("Content-Disposition: attachment; filename=helloworld.pdf");
 header("Content-type: application/x-pdf");
 echo $pdfString;

现在的问题是,生成 PDF 时会抛出错误消息:Pdf 不以 %PDF-1.4 开头。我还注意到它包含 html 内容。谁能告诉我我应该怎么做才能避免 html 内容被附加到 Pdf 自己的内容中。

4

1 回答 1

0

windows 7中zend_pdf文档重复问题

坚持ob_end_clean()echo声明之前。

于 2012-09-10T07:06:27.023 回答