尝试使用html2pdf类自动生成pdfs。我得到了以下代码,工作正常,只有有人必须手动保存PDF。但是,每当添加新产品时,我都希望在没有用户干预的情况下自动将pdf保存到某个文件夹,并将此值存储在数据库中以供将来参考。 我如何“静静地”保存pdf,即在后台没有显示任何弹出窗口或要求用户进行干预? 提前谢谢。
include('pdf_content.php');
$content = ob_get_clean();
// convert to PDF
require_once('html2pdf/html2pdf.class.php');
try
{
$html2pdf = new HTML2PDF('P', 'A4', 'en');
$html2pdf->pdf->SetDisplayMode('fullpage');
$html2pdf->setDefaultFont('Arial');
$html2pdf->writeHTML($content, isset($_GET['vuehtml']));
//$html2pdf->Output($file_name.'_'.date("dmY").'.pdf');
$html2pdf->Output($product_id.'_'.$file_name.'_'.date("dmY").'.pdf');
答案 0 :(得分:13)
您可以在每次添加新产品时尝试调用此脚本,尽管那时您不会在“后台”中真正执行此操作...
有关详细信息,请注意问题"How can I run a PHP script in the background after a form is submitted?"
编辑:
如果您希望将文件保存在服务器上而不是将其输出到浏览器,则可以使用不同的参数。 See also the html2pdf-wiki.请注意,您无法忽视用户计算机上的文件!
$html2pdf->Output('directory/file_xxxx.pdf', 'F');