本文介绍了使用Html2pdf创建了Pdf,我不知道如何保存和检索pdf的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用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 methanks in advance
推荐答案
如您在 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');
?>
与此保存在服务器上.
with this you save on server.
$html2pdf->Output('directory/filename_xxxx.pdf', 'F');
Add the name to mysqldb.
当您需要pdf内容时,您将从db中获取名称并满足您的需求:)
When you want pdf content,you will get name from db and make what you need :)
这篇关于使用Html2pdf创建了Pdf,我不知道如何保存和检索pdf的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!