You are here

function PclZip::privWriteCentralFileHeader in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php \PclZip::privWriteCentralFileHeader()
2 calls to PclZip::privWriteCentralFileHeader()
PclZip::privAdd in vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php
PclZip::privAddList in vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php, line 3067

Class

PclZip

Code

function privWriteCentralFileHeader(&$p_header) {
  $v_result = 1;

  // TBC

  //for(reset($p_header); $key = key($p_header); next($p_header)) {

  //}

  // ----- Transform UNIX mtime to DOS format mdate/mtime
  $v_date = getdate($p_header['mtime']);
  $v_mtime = ($v_date['hours'] << 11) + ($v_date['minutes'] << 5) + $v_date['seconds'] / 2;
  $v_mdate = ($v_date['year'] - 1980 << 9) + ($v_date['mon'] << 5) + $v_date['mday'];

  // ----- Packed data
  $v_binary_data = pack("VvvvvvvVVVvvvvvVV", 0x2014b50, $p_header['version'], $p_header['version_extracted'], $p_header['flag'], $p_header['compression'], $v_mtime, $v_mdate, $p_header['crc'], $p_header['compressed_size'], $p_header['size'], strlen($p_header['stored_filename']), $p_header['extra_len'], $p_header['comment_len'], $p_header['disk'], $p_header['internal'], $p_header['external'], $p_header['offset']);

  // ----- Write the 42 bytes of the header in the zip file
  fputs($this->zip_fd, $v_binary_data, 46);

  // ----- Write the variable fields
  if (strlen($p_header['stored_filename']) != 0) {
    fputs($this->zip_fd, $p_header['stored_filename'], strlen($p_header['stored_filename']));
  }
  if ($p_header['extra_len'] != 0) {
    fputs($this->zip_fd, $p_header['extra'], $p_header['extra_len']);
  }
  if ($p_header['comment_len'] != 0) {
    fputs($this->zip_fd, $p_header['comment'], $p_header['comment_len']);
  }

  // ----- Return
  return $v_result;
}