1 system.tar.inc | public Archive_Tar::_writeFooter() |
Return value
bool:
File
- core/
modules/ system/ system.tar.inc, line 1180
Class
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;
}