zhaojs
2023-07-31 0de015249a3abe05031eb4f5d988e8eb7ef83c87
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
 
namespace PhpZip\Model;
 
/**
 * End of Central Directory.
 *
 * @author Ne-Lexa alexey@nelexa.ru
 * @license MIT
 */
class EndOfCentralDirectory
{
    /** @var int Count files. */
    private $entryCount;
 
    /** @var int Central Directory Offset. */
    private $cdOffset;
 
    /** @var int */
    private $cdSize;
 
    /** @var string|null The archive comment. */
    private $comment;
 
    /** @var bool Zip64 extension */
    private $zip64;
 
    /**
     * EndOfCentralDirectory constructor.
     *
     * @param int         $entryCount
     * @param int         $cdOffset
     * @param int         $cdSize
     * @param bool        $zip64
     * @param string|null $comment
     */
    public function __construct($entryCount, $cdOffset, $cdSize, $zip64, $comment = null)
    {
        $this->entryCount = $entryCount;
        $this->cdOffset = $cdOffset;
        $this->cdSize = $cdSize;
        $this->zip64 = $zip64;
        $this->comment = $comment;
    }
 
    /**
     * @param string|null $comment
     */
    public function setComment($comment)
    {
        $this->comment = $comment;
    }
 
    /**
     * @return int
     */
    public function getEntryCount()
    {
        return $this->entryCount;
    }
 
    /**
     * @return int
     */
    public function getCdOffset()
    {
        return $this->cdOffset;
    }
 
    /**
     * @return int
     */
    public function getCdSize()
    {
        return $this->cdSize;
    }
 
    /**
     * @return string|null
     */
    public function getComment()
    {
        return $this->comment;
    }
 
    /**
     * @return bool
     */
    public function isZip64()
    {
        return $this->zip64;
    }
}