File "footer.htm"
Full Path: C:/wamp64/www/PAGOS-T3/fpdf/doc/footer.htm
File size: 1.11 KB
MIME-type: text/html
Charset: 8 bit
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Footer</title>
<link type="text/css" rel="stylesheet" href="../fpdf.css">
</head>
<body>
<h1>Footer</h1>
<code>Footer()</code>
<h2>Descripcin</h2>
Este mtodo es usado para generar el pie de pgina. Es automticamente invocado por AddPage() y Close() y no sebera ser
invocado directamente por la aplicacin. La implementacin en FPDF es vacia, as que si desea un procesamiento especfico
debe hacer subclase y sobreescribir el mtodo.
<h2>Ejemplo</h2>
<div class="doc-source">
<pre><code>class PDF extends FPDF
{
function Footer()
{
// Go to 1.5 cm from bottom
$this->SetY(-15);
// Select Arial italic 8
$this->SetFont('Arial','I',8);
// Print centered page number
$this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C');
}
}</code></pre>
</div>
<h2>Vea adems</h2>
<a href="header.htm">Header()</a>.
<hr style="margin-top:1.5em">
<div style="text-align:center"><a href="index.htm">Inicio</a></div>
</body>
</html>