Footer()
class PDF extends FPDF
{
function Footer()
{
//¾Æ·¡ÂÊ¿¡¼ 1.5 cm ¶³¾îÁø À§Ä¡·Î À̵¿
$this->SetY(-15);
//±â¿ï¾îÁø 8Å©±âÀÇ Arial ¼±ÅÃ
$this->SetFont('Arial','I',8);
//Áß°£¿¡ ÆäÀÌÁö ¹øÈ£ Ãâ·Â
$this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C');
}
}