ZipOptions.php 501 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace PhpZip\Constants;
  3. /**
  4. * Interface ZipOptions.
  5. */
  6. interface ZipOptions
  7. {
  8. /**
  9. * Boolean option for store just file names (skip directory names).
  10. *
  11. * @var string
  12. */
  13. const STORE_ONLY_FILES = 'only_files';
  14. /** @var string */
  15. const COMPRESSION_METHOD = 'compression_method';
  16. /** @var string */
  17. const MODIFIED_TIME = 'mtime';
  18. /**
  19. * @var string
  20. *
  21. * @see DosCodePage::getCodePages()
  22. */
  23. const CHARSET = 'charset';
  24. }