我正在使用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
構造函數有什麼問題? – 2012-07-25 15:30:54