Prado\IO\TTarFileExtractor::_close PHP Метод

_close() приватный Метод

private _close ( )
    private function _close()
    {
        //if (isset($this->_file)) {
        if (is_resource($this->_file)) {
            @fclose($this->_file);
            $this->_file = 0;
        }
        // ----- Look if a local copy need to be erase
        // Note that it might be interesting to keep the url for a time : ToDo
        if ($this->_temp_tarname != '') {
            @unlink($this->_temp_tarname);
            $this->_temp_tarname = '';
        }
        return true;
    }