init
- 框架初始化 - 安装插件 - 修复PHP8.4报错
This commit is contained in:
105
vendor/nelexa/zip/src/Constants/ZipConstants.php
vendored
Normal file
105
vendor/nelexa/zip/src/Constants/ZipConstants.php
vendored
Normal file
@@ -0,0 +1,105 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of the nelexa/zip package.
|
||||
* (c) Ne-Lexa <https://github.com/Ne-Lexa/php-zip>
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace PhpZip\Constants;
|
||||
|
||||
/**
|
||||
* Zip Constants.
|
||||
*/
|
||||
interface ZipConstants
|
||||
{
|
||||
/** @var int End Of Central Directory Record signature. */
|
||||
public const END_CD = 0x06054B50; // "PK\005\006"
|
||||
|
||||
/** @var int Zip64 End Of Central Directory Record. */
|
||||
public const ZIP64_END_CD = 0x06064B50; // "PK\006\006"
|
||||
|
||||
/** @var int Zip64 End Of Central Directory Locator. */
|
||||
public const ZIP64_END_CD_LOC = 0x07064B50; // "PK\006\007"
|
||||
|
||||
/** @var int Central File Header signature. */
|
||||
public const CENTRAL_FILE_HEADER = 0x02014B50; // "PK\001\002"
|
||||
|
||||
/** @var int Local File Header signature. */
|
||||
public const LOCAL_FILE_HEADER = 0x04034B50; // "PK\003\004"
|
||||
|
||||
/** @var int Data Descriptor signature. */
|
||||
public const DATA_DESCRIPTOR = 0x08074B50; // "PK\007\008"
|
||||
|
||||
/**
|
||||
* @var int value stored in four-byte size and similar fields
|
||||
* if ZIP64 extensions are used
|
||||
*/
|
||||
public const ZIP64_MAGIC = 0xFFFFFFFF;
|
||||
|
||||
/**
|
||||
* Local File Header signature 4
|
||||
* Version Needed To Extract 2
|
||||
* General Purpose Bit Flags 2
|
||||
* Compression Method 2
|
||||
* Last Mod File Time 2
|
||||
* Last Mod File Date 2
|
||||
* CRC-32 4
|
||||
* Compressed Size 4
|
||||
* Uncompressed Size 4.
|
||||
*
|
||||
* @var int Local File Header filename position
|
||||
*/
|
||||
public const LFH_FILENAME_LENGTH_POS = 26;
|
||||
|
||||
/**
|
||||
* The minimum length of the Local File Header record.
|
||||
*
|
||||
* local file header signature 4
|
||||
* version needed to extract 2
|
||||
* general purpose bit flag 2
|
||||
* compression method 2
|
||||
* last mod file time 2
|
||||
* last mod file date 2
|
||||
* crc-32 4
|
||||
* compressed size 4
|
||||
* uncompressed size 4
|
||||
* file name length 2
|
||||
* extra field length 2
|
||||
*/
|
||||
public const LFH_FILENAME_POS = 30;
|
||||
|
||||
/** @var int the length of the Zip64 End Of Central Directory Locator */
|
||||
public const ZIP64_END_CD_LOC_LEN = 20;
|
||||
|
||||
/** @var int the minimum length of the End Of Central Directory Record */
|
||||
public const END_CD_MIN_LEN = 22;
|
||||
|
||||
/**
|
||||
* The minimum length of the Zip64 End Of Central Directory Record.
|
||||
*
|
||||
* zip64 end of central dir
|
||||
* signature 4
|
||||
* size of zip64 end of central
|
||||
* directory record 8
|
||||
* version made by 2
|
||||
* version needed to extract 2
|
||||
* number of this disk 4
|
||||
* number of the disk with the
|
||||
* start of the central directory 4
|
||||
* total number of entries in the
|
||||
* central directory on this disk 8
|
||||
* total number of entries in
|
||||
* the central directory 8
|
||||
* size of the central directory 8
|
||||
* offset of start of central
|
||||
* directory with respect to
|
||||
* the starting disk number 8
|
||||
*
|
||||
* @var int ZIP64 End Of Central Directory length
|
||||
*/
|
||||
public const ZIP64_END_OF_CD_LEN = 56;
|
||||
}
|
||||
Reference in New Issue
Block a user