我正在使用 tFPDF 类。
我正在使用此代码扩展此类以获取自定义页眉和页脚
class PDF extends tFPDF{
function Header(){
$this->Image('../../images/logo-admin.png',10,6,30);
$this->SetFont('DejaVu','',13);
$this->Cell(247,10,$produto,0,0,'C',false);
$this->SetDrawColor(0,153,204);
$this->SetFillColor(98,197,230);
$this->SetTextColor(255);
$this->Cell(30,10,date('d/m/Y'),1,0,'C',true);
$this->Ln(20);
}
function Footer(){
$this->SetY(-15);
$this->SetFont('Arial','',8);
$this->Cell(0,10,'P'.chr(225).'gina '.$this->PageNo().'/{nb}',0,0,'C');
}
}
我需要做的是以某种方式更改$produto
不属于该类的变量。
我正在使用$pdf = new PDF();
.
我如何将一个变量传递给这个类,以便我可以使用一个字符串,比如$pdf = new PDF('SomeString');
在类中使用它,比如$this->somestring = $somestringfromoutside