我想使用php将html表转换为pdf文件。我不想要 将库安装或保存在www文件夹中。
答案 0 :(得分:2)
我正在使用mPDF库。这里有一些examples和documentation。真的很棒。它适用于 看一个例子:
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)