一次使用html2pdf创建两个不同的pdf?

时间:2013-09-17 04:36:18

标签: php html pdf html2pdf

我有这样的剧本

$this->load->library('html2pdf/html2pdf');
$html2pdf = new HTML2PDF('L','A4','en');

$this->html2pdf->WriteHTML($html_1);
$this->html2pdf->Output('PDF1.pdf', 'F');

$this->html2pdf->WriteHTML($html_2);
$this->html2pdf->Output('PDF2.pdf', 'F');

第一个PDF2成功生成并保存在服务器上,但是对于PDF2无法正常生成,只显示空白页。

2 个答案:

答案 0 :(得分:1)

试试这个...但这只是一个例子..

<?php

require_once(dirname(__FILE__).'/html2pdf/html2pdf.class.php');
$html2pdf = new HTML2PDF('P','A4','fr');
$html2pdf->WriteHTML($content);
$html2pdf->Output('exemple.pdf');

&GT;

还要看看这个......

http://html2pdf.fr/en/example

答案 1 :(得分:0)

我在两个条件下尝试了这个,一个在 localhost 上,一个在我的服务器开发上。在localhost上,可以成功同时创建两个pdf,但不能在服务器开发上创建。我不知道,其他安排或部分缺少什么