Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Tar.php

function Archive_Tar::_writeFooter

Return value

bool

3 calls to Archive_Tar::_writeFooter()
Archive_Tar::addString in vendor/pear/archive_tar/Archive/Tar.php
This method add a single string as a file at the end of the existing archive. If the archive does not yet exists it is created.
Archive_Tar::createModify in vendor/pear/archive_tar/Archive/Tar.php
This method creates the archive file and add the files / directories that are listed in $p_filelist. If the file already exists and is writable, it is replaced by the new tar. It is a create and not an add. If the file exists and is read-only or is a…
Archive_Tar::_append in vendor/pear/archive_tar/Archive/Tar.php

File

vendor/pear/archive_tar/Archive/Tar.php, line 1115

Class

Archive_Tar
Creates a (compressed) Tar archive

Code

public function _writeFooter() {
    if (is_resource($this->_file)) {
        // ----- Write the last 0 filled block for end of archive
        $v_binary_data = pack('a1024', '');
        $this->_writeBlock($v_binary_data);
    }
    return true;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal