63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace PhpZip\Constants;
 | 
						|
 | 
						|
use PhpZip\IO\ZipReader;
 | 
						|
use PhpZip\ZipFile;
 | 
						|
 | 
						|
/**
 | 
						|
 * Interface ZipOptions.
 | 
						|
 */
 | 
						|
interface ZipOptions
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Boolean option for store just file names (skip directory names).
 | 
						|
     *
 | 
						|
     * @see ZipFile::addFromFinder()
 | 
						|
     */
 | 
						|
    const STORE_ONLY_FILES = 'only_files';
 | 
						|
 | 
						|
    /**
 | 
						|
     * Uses the specified compression method.
 | 
						|
     *
 | 
						|
     * @see ZipFile::addFromFinder()
 | 
						|
     * @see ZipFile::addSplFile()
 | 
						|
     */
 | 
						|
    const COMPRESSION_METHOD = 'compression_method';
 | 
						|
 | 
						|
    /**
 | 
						|
     * Set the specified record modification time.
 | 
						|
     * The value can be {@see \DateTimeInterface}, integer timestamp
 | 
						|
     * or a string of any format.
 | 
						|
     *
 | 
						|
     * @see ZipFile::addFromFinder()
 | 
						|
     * @see ZipFile::addSplFile()
 | 
						|
     */
 | 
						|
    const MODIFIED_TIME = 'mtime';
 | 
						|
 | 
						|
    /**
 | 
						|
     * Specifies the encoding of the record name for cases when the UTF-8
 | 
						|
     * usage flag is not set.
 | 
						|
     *
 | 
						|
     * The most commonly used encodings are compiled into the constants
 | 
						|
     * of the {@see DosCodePage} class.
 | 
						|
     *
 | 
						|
     * @see ZipFile::openFile()
 | 
						|
     * @see ZipFile::openFromString()
 | 
						|
     * @see ZipFile::openFromStream()
 | 
						|
     * @see ZipReader::getDefaultOptions()
 | 
						|
     * @see DosCodePage::getCodePages()
 | 
						|
     */
 | 
						|
    const CHARSET = 'charset';
 | 
						|
 | 
						|
    /**
 | 
						|
     * Allows ({@see true}) or denies ({@see false}) unpacking unix symlinks.
 | 
						|
     *
 | 
						|
     * This is a potentially dangerous operation for uncontrolled zip files.
 | 
						|
     * By default is ({@see false}).
 | 
						|
     *
 | 
						|
     * @see https://josipfranjkovic.blogspot.com/2014/12/reading-local-files-from-facebooks.html
 | 
						|
     */
 | 
						|
    const EXTRACT_SYMLINKS = 'extract_symlinks';
 | 
						|
}
 |