美好的一天!我想问一下如何在codeigniter中使用FPDF在pdf中添加页脚。在哪里放这段代码?
function Footer()
{
// Position at 1.5 cm from bottom
$this->SetY(-15);
// Arial italic 8
$this->SetFont('Arial','I',8);
// Page number
$this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C');
}
是在库中还是在控制器中?