zhaojs
2023-06-27 5d05aaa58917ed56acd23ed2394d5c96905e0208
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?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';
}