Options.rst 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. Available options
  2. ===============
  3. Here is the full list of options available to you. You can also have a look at
  4. ``src/Option/Archive.php`` file.
  5. First, an instance of ``ZipStream\Option\Archive`` needs to be created, and
  6. after that you use setters methods to modify the values.
  7. .. code-block:: php
  8. use ZipStream\ZipStream;
  9. use ZipStream\Option\Archive as ArchiveOptions;
  10. require_once 'vendor/autoload.php';
  11. $opt = new ArchiveOptions();
  12. // Define output stream (argument is of type resource)
  13. $opt->setOutputStream($fd);
  14. // Set the deflate level (default is 6; use -1 to disable it)
  15. $opt->setDeflateLevel(6);
  16. // Add a comment to the zip file
  17. $opt->setComment('This is a comment.');
  18. // Size, in bytes, of the largest file to try and load into memory (used by addFileFromPath()). Large files may also be compressed differently; see the 'largeFileMethod' option.
  19. $opt->setLargeFileSize(30000000);
  20. // How to handle large files. Legal values are STORE (the default), or DEFLATE. Store sends the file raw and is significantly faster, while DEFLATE compresses the file and is much, much slower. Note that deflate must compress the file twice and is extremely slow.
  21. $opt->setLargeFileMethod(ZipStream\Option\Method::STORE());
  22. $opt->setLargeFileMethod(ZipStream\Option\Method::DEFLATE());
  23. // Send http headers (default is false)
  24. $opt->setSendHttpHeaders(false);
  25. // HTTP Content-Disposition. Defaults to 'attachment', where FILENAME is the specified filename. Note that this does nothing if you are not sending HTTP headers.
  26. $opt->setContentDisposition('attachment');
  27. // Set the content type (does nothing if you are not sending HTTP headers)
  28. $opt->setContentType('application/x-zip');
  29. // Set the function called for setting headers. Default is the `header()` of PHP
  30. $opt->setHttpHeaderCallback('header');
  31. // Enable streaming files with single read where general purpose bit 3 indicates local file header contain zero values in crc and size fields, these appear only after file contents in data descriptor block. Default is false. Set to true if your input stream is remote (used with addFileFromStream()).
  32. $opt->setZeroHeader(false);
  33. // Enable reading file stat for determining file size. When a 32-bit system reads file size that is over 2 GB, invalid value appears in file size due to integer overflow. Should be disabled on 32-bit systems with method addFileFromPath if any file may exceed 2 GB. In this case file will be read in blocks and correct size will be determined from content. Default is true.
  34. $opt->setStatFiles(true);
  35. // Enable zip64 extension, allowing very large archives (> 4Gb or file count > 64k)
  36. // default is true
  37. $opt->setEnableZip64(true);
  38. // Flush output buffer after every write
  39. // default is false
  40. $opt->setFlushOutput(true);
  41. // Now that everything is set you can pass the options to the ZipStream instance
  42. $zip = new ZipStream('example.zip', $opt);