并创建一个模板,创建我想要的页面 我有功能TextBox($ ----和模板设置)
当我运行它一次创建页面时,当我将它放在cron中时它只运行一次然后在php中输入错误
致命错误:无法在第12行的pdf.tpl中重新声明TextBox()(之前在pdf.tpl:7中声明)
以下是第7-13行的代码
function TextBox($pdf,$textval, $x = 0, $y, $width = 0, $height = 10, $fontsize = 8, $fontstyle = '', $align = 'L',$ltr='',$fil='') {
$pdf->SetXY($x+15, $y); // 20 = margin left
$pdf->SetFont('freesans', $fontstyle, $fontsize);
$pdf->Cell($width, $height, $textval,$ltr,false , $align,$fil);
}
$startpage = $pdf->GetPage();
答案 0 :(得分:0)
TextBox是TCPDF也使用的函数名。选择另一个。