public function Close()
 {
     parent::Close();
     // clean up tmp files
     foreach ($this->tmpFiles as $tmp) {
         @unlink($tmp);
     }
 }
Beispiel #2
0
 function Close()
 {
     if ($this->mostrarBordas) {
         $this->Line($this->x, $this->y, $this->w - $this->lMargin, $this->y);
         if ($this->indiceQuebra >= 0) {
             $this->Cell(0, 4, $this->labelTotalQuebra . $this->regQuebra, '', 0, 'L');
         }
     }
     $this->fimRelatorio = "<<<  Fim do relatório  >>>";
     parent::Close();
 }