Alias. Domyślnie: {nb}.
class PDF extends FPDF { function Footer() { //ustaw się 1,5 cm od dołu $this->SetY(-15); //Select Arial italic 8 $this->SetFont('Arial','I',8); //Wypisz bieżący numer strony i liczbę wszystkich stron $this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C'); } } $pdf=new PDF(); $pdf->AliasNbPages(); |