使用Html2pdf创建了Pdf我不知道如何保存和检索pdf

时间:2012-02-25 10:03:57

标签: php mysql html2pdf

我使用Html2pdf创建了Pdf,我不知道如何保存和检索pdf,我是新的php请帮帮我 提前谢谢

1 个答案:

答案 0 :(得分:6)

正如您在html2pdf

中的示例中所见
<?php
    $content = "
<page>
    <h1>Exemple d'utilisation</h1>
    <br>
    Ceci est un <b>exemple d'utilisation</b>
    de <a href='http://html2pdf.fr/'>HTML2PDF</a>.<br>
</page>";

    require_once(dirname(__FILE__).'/html2pdf/html2pdf.class.php');
    $html2pdf = new HTML2PDF('P','A4','fr');
    $html2pdf->WriteHTML($content); // in $content you put your content to have in pdf
    $html2pdf->Output('exemple.pdf');
?>

编辑: 用这个你节省在服务器上。

  $html2pdf->Output('directory/filename_xxxx.pdf', 'F');
  Add the name to mysqldb.

当你想要pdf内容时,你将从db获得名称并制作你需要的东西:)