CODEIGNITER - FPDF显示页脚

时间:2016-10-28 08:43:30

标签: php codeigniter fpdf

美好的一天!我想问一下如何在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');
}

是在库中还是在控制器中?

0 个答案:

没有答案
相关问题