使用其他文件中的变量打印PDF文件?

时间:2015-09-12 08:13:03

标签: php html pdf printing

我想知道是否可以打印PDF文件,并用我从网站上获得的变量替换其中的空白点,因此输出取决于变量的值等。

1 个答案:

答案 0 :(得分:0)

使用FPDF执行您需要的操作。

但在这种情况下,你必须知道你必须从头开始创建一个pdf文件并以你想要的方式填充它。

<?php
require('fpdf.php');

$pdf = new FPDF();
$pdf->AddPage();    // add page to PDF
$pdf->SetFont('Arial','B',16);    // Choose a font and size
$pdf->Cell(40,10,'Hello World!');  // write anything to any line you want
$pdf->Output("your_name.pdf");   // Export the file and send in to browser       
?>