私は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