我最近在一个通过pdf模板生成pdf报告的系统中工作。我为此找到了FPDI。我尝试了下面的代码,但是,它让我一直出现此错误...
解析错误:语法错误,意外的T_USE,期望输入T_FUNCTION C:\ wamp \ www \ stalucia \ reports \ fpdi \ src \ Fpdi.php在第11行
我的tempate pdf命名为edit.pdf
这是我的代码。
<?php
require_once('fpdf/fpdf.php');
require_once('fpdi/src/Fpdi.php');
// initiate FPDI
$pdf = new FPDI();
// add a page
$pdf->AddPage();
// set the source file
$pdf->setSourceFile("edit.pdf");
// import page 1
$tplIdx = $pdf->importPage(1);
// use the imported page and place it at point 10,10 with a width of 100 mm
$pdf->useTemplate($tplIdx, 10, 10, 100);
// now write some text above the imported page
$pdf->SetFont('Helvetica');
$pdf->SetTextColor(255, 0, 0);
$pdf->SetXY(30, 30);
$pdf->Write(0, 'This is just a simple text');
$pdf->Output();