我在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自己的内容。