$v_size =
filesize($p_filename);
while ($v_size != 0
) { $v_read_size =
($v_size < PCLZIP_READ_BLOCK_SIZE ?
$v_size : PCLZIP_READ_BLOCK_SIZE
);
$v_buffer = @
fread($v_file,
$v_read_size);
//$v_binary_data = pack('a'.$v_read_size, $v_buffer);
@
gzputs($v_file_compressed,
$v_buffer,
$v_read_size);
$v_size -=
$v_read_size;
} // ----- Close the file
@
fclose($v_file);
@
gzclose($v_file_compressed);
// ----- Check the minimum file size
if (filesize($v_gzip_temp_name) < 18
) { PclZip::
privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'gzip temporary file \''.
$v_gzip_temp_name.'\' has invalid filesize - should be minimum 18 bytes'
);
return PclZip::
errorCode();
} // ----- Extract the compressed attributes
if (($v_file_compressed = @
fopen($v_gzip_temp_name, "rb"
)) == 0
) { PclZip::
privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.
$v_gzip_temp_name.'\' in binary read mode'
);
return PclZip::
errorCode();
}