function Archive_Tar::__destruct

7.x system.tar.inc Archive_Tar::__destruct()

File

drupal-7.x/modules/system/system.tar.inc, line 208

Class

Archive_Tar
Creates a (compressed) Tar archive *

Code

function __destruct() 
 {
  $this->_close();
  // ----- Look for a local copy to delete
  if ($this->_temp_tarname != '') {
    @drupal_unlink($this->_temp_tarname);
  }
  //        $this->_PEAR();
}