2

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

4

1 回答 1

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 获取名称并制作您需要的内容:)

于 2012-02-25T10:06:38.107 回答