2

我正在使用 mPDF 库来提供 pdf 文件。

假设我有一个名为的文件facture.php,其中包含:

  • 标题中的图像

  • 身体中的一张桌子

  • 文件页脚中的图像

另一个名为的文件convert_HTML2PDF.php将提供第一个文件的 pdf 输出。

我想获取被解释为变量的facture文件的输出,并将其输出为pdf文件,而不在浏览器中可视化。

我该如何做到这一点并使用 convert_HTML2PDF.php 中的输出?

4

3 回答 3

7
$pdf = $mpdf->Output('', 'S')

将 PDF 输出为字符串 - 无需创建临时文件。

于 2015-01-05T11:06:48.073 回答
2

使用file_get_contents()获取您的 facture.php 的 html 内容:

$output = file_get_contents('http://www.example.com/facture.php');
于 2013-08-30T17:26:10.963 回答
0
$mpdf->Output('filename.pdf', 'F');

会将输出发送到服务器上的文件而不是浏览器。

有关更多输出变化,请参见: http ://mpdf1.com/manual/index.php?tid=125。

于 2013-09-03T01:53:07.373 回答