使用PHP的HTML表到PDF转换

时间:2013-11-29 10:32:18

标签: php pdf pdf-generation

我想使用php将html表转换为pdf文件。我不想要 将库安装或保存在www文件夹中。

2 个答案:

答案 0 :(得分:2)

我正在使用mPDF库。这里有一些examplesdocumentation。真的很棒。它适用于 看一个例子:

 require_once (dirname(__FILE__) . '/../pdf/mpdf.php');
 /*this is the constructor with different options :  mPDF([ string $mode [, mixed $format [, 
 *float $default_font_size [, string $default_font [, float $margin_left , float $margin_right ,
 *float $margin_top , float $margin_bottom , float $margin_header , float $margin_footer [,
 *string $orientation ]]]]]])*/
 $mpdf = new mPDF('win-1252', 'A4', '', '', 10, '', '', '', '', '');
 $mpdf -> useOnlyCoreFonts = true;
 $mpdf -> SetDisplayMode('fullpage');
 $mpdf -> WriteHTML("<p>here you put the html</p>");
 $mpdf -> Output();// this generates the pdf
 exit;

答案 1 :(得分:0)

您可以使用TCPDF库。

以下是完整演示如何将HTML表格转换为PDF

http://www.tcpdf.org/examples/example_006.phps

http://www.tcpdf.org/examples.php