On this page
public function Archive_Tar::_writeBlock
public Archive_Tar::_writeBlock($p_binary_data, $p_len = null)Parameters
mixed $p_binary_data:
integer $p_len:
Return value
bool
File
- modules/system/system.tar.inc, line 1034
Class
Code
public function _writeBlock($p_binary_data, $p_len = null) 
 {
  if (is_resource($this->_file)) {
    if ($p_len === null) {
      if ($this->_compress_type == 'gz') {
        @gzputs($this->_file, $p_binary_data);
      }
      else {
        if ($this->_compress_type == 'bz2') {
          @bzwrite($this->_file, $p_binary_data);
        }
        else {
          if ($this->_compress_type == 'lzma2') {
            @xzwrite($this->_file, $p_binary_data);
          }
          else {
            if ($this->_compress_type == 'none') {
              @fputs($this->_file, $p_binary_data);
            }
            else {
              $this->_error(
              'Unknown or missing compression type ('
                . $this->_compress_type . ')'
                );
            }
          }
        }
      }
    }
    else {
      if ($this->_compress_type == 'gz') {
        @gzputs($this->_file, $p_binary_data, $p_len);
      }
      else {
        if ($this->_compress_type == 'bz2') {
          @bzwrite($this->_file, $p_binary_data, $p_len);
        }
        else {
          if ($this->_compress_type == 'lzma2') {
            @xzwrite($this->_file, $p_binary_data, $p_len);
          }
          else {
            if ($this->_compress_type == 'none') {
              @fputs($this->_file, $p_binary_data, $p_len);
            }
            else {
              $this->_error(
              'Unknown or missing compression type ('
                . $this->_compress_type . ')'
                );
            }
          }
        }
      }
    }
  }
  return true;
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
 https://api.drupal.org/api/drupal/modules!system!system.tar.inc/function/Archive_Tar::_writeBlock/7.x