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

发布于 2025-01-08 17:04:30 字数 63 浏览 1 评论 0原文

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

i am created Pdf using Html2pdf ,i don't know how to save and retrieve pdf, i am new in php please help me
thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清晰传感 2025-01-15 17:04:30

正如您在 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 内容时,您将从数据库获取名称并制作您需要的内容:)

as you can see in example in 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');
?>

EDIT:
with this you save on server.

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

When you want pdf content,you will get name from db and make what you need :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文