123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482 |
- <?php
- // Licensed under Apache-2.0
- // Copied from https://github.com/JetBrains/phpstorm-stubs/blob/master/zip/zip.php
- // Removed attributes
- // Start of zip v.1.14.0
- /**
- * A file archive, compressed with Zip.
- * @link https://php.net/manual/en/class.ziparchive.php
- */
- class ZipArchive implements Countable
- {
- /**
- * Zip library version
- * @link https://php.net/manual/en/zip.constants.php
- * @since 7.4.3
- */
- public const LIBZIP_VERSION = '1.7.3';
- /**
- * Create the archive if it does not exist.
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const CREATE = 1;
- /**
- * Error if archive already exists.
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const EXCL = 2;
- /**
- * Perform additional consistency checks on the archive, and error if they fail.
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const CHECKCONS = 4;
- /**
- * Always start a new archive, this mode will overwrite the file if
- * it already exists.
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const OVERWRITE = 8;
- /**
- * Ignore case on name lookup
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const FL_NOCASE = 1;
- /**
- * Ignore directory component
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const FL_NODIR = 2;
- /**
- * Read compressed data
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const FL_COMPRESSED = 4;
- /**
- * Use original data, ignoring changes.
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const FL_UNCHANGED = 8;
- public const FL_RECOMPRESS = 16;
- public const FL_ENCRYPTED = 32;
- public const FL_OVERWRITE = 8192;
- public const FL_LOCAL = 256;
- public const FL_CENTRAL = 512;
- public const EM_TRAD_PKWARE = 1;
- public const EM_UNKNOWN = 65535;
- /**
- * better of deflate or store.
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const CM_DEFAULT = -1;
- /**
- * stored (uncompressed).
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const CM_STORE = 0;
- /**
- * shrunk
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const CM_SHRINK = 1;
- /**
- * reduced with factor 1
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const CM_REDUCE_1 = 2;
- /**
- * reduced with factor 2
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const CM_REDUCE_2 = 3;
- /**
- * reduced with factor 3
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const CM_REDUCE_3 = 4;
- /**
- * reduced with factor 4
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const CM_REDUCE_4 = 5;
- /**
- * imploded
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const CM_IMPLODE = 6;
- /**
- * deflated
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const CM_DEFLATE = 8;
- /**
- * deflate64
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const CM_DEFLATE64 = 9;
- /**
- * PKWARE imploding
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const CM_PKWARE_IMPLODE = 10;
- /**
- * BZIP2 algorithm
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const CM_BZIP2 = 12;
- public const CM_LZMA = 14;
- public const CM_TERSE = 18;
- public const CM_LZ77 = 19;
- public const CM_WAVPACK = 97;
- public const CM_PPMD = 98;
- /**
- * No error.
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_OK = 0;
- /**
- * Multi-disk zip archives not supported.
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_MULTIDISK = 1;
- /**
- * Renaming temporary file failed.
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_RENAME = 2;
- /**
- * Closing zip archive failed
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_CLOSE = 3;
- /**
- * Seek error
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_SEEK = 4;
- /**
- * Read error
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_READ = 5;
- /**
- * Write error
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_WRITE = 6;
- /**
- * CRC error
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_CRC = 7;
- /**
- * Containing zip archive was closed
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_ZIPCLOSED = 8;
- /**
- * No such file.
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_NOENT = 9;
- /**
- * File already exists
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_EXISTS = 10;
- /**
- * Can't open file
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_OPEN = 11;
- /**
- * Failure to create temporary file.
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_TMPOPEN = 12;
- /**
- * Zlib error
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_ZLIB = 13;
- /**
- * Memory allocation failure
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_MEMORY = 14;
- /**
- * Entry has been changed
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_CHANGED = 15;
- /**
- * Compression method not supported.
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_COMPNOTSUPP = 16;
- /**
- * Premature EOF
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_EOF = 17;
- /**
- * Invalid argument
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_INVAL = 18;
- /**
- * Not a zip archive
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_NOZIP = 19;
- /**
- * Internal error
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_INTERNAL = 20;
- /**
- * Zip archive inconsistent
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_INCONS = 21;
- /**
- * Can't remove file
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_REMOVE = 22;
- /**
- * Entry has been deleted
- * @link https://php.net/manual/en/zip.constants.php
- */
- public const ER_DELETED = 23;
- /**
- * No encryption
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.2
- */
- public const EM_NONE = 0;
- /**
- * AES 128 encryption
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.2
- */
- public const EM_AES_128 = 257;
- /**
- * AES 192 encryption
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.2
- */
- public const EM_AES_192 = 258;
- /**
- * AES 256 encryption
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.2
- */
- public const EM_AES_256 = 259;
- /**
- * Open archive in read only mode
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.4.3
- */
- public const RDONLY = 16;
- /**
- * Guess string encoding (is default)
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.0.8
- */
- public const FL_ENC_GUESS = 0;
- /**
- * Get unmodified string
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.0.8
- */
- public const FL_ENC_RAW = 64;
- /**
- * Follow specification strictly
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.0.8
- */
- public const FL_ENC_STRICT = 128;
- /**
- * String is UTF-8 encoded
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.0.8
- */
- public const FL_ENC_UTF_8 = 2048;
- /**
- * String is CP437 encoded
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.0.8
- */
- public const FL_ENC_CP437 = 4096;
- /**
- * LZMA2 algorithm
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.4.3
- */
- public const CM_LZMA2 = 33;
- /**
- * XZ algorithm
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.4.3
- */
- public const CM_XZ = 95;
- /**
- * Encryption method not support
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.4.3
- */
- public const ER_ENCRNOTSUPP = 24;
- /**
- * Read-only archive
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.4.3
- */
- public const ER_RDONLY = 25;
- /**
- * No password provided
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.4.3
- */
- public const ER_NOPASSWD = 26;
- /**
- * Wrong password provided
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.4.3
- */
- public const ER_WRONGPASSWD = 27;
- /**
- * Operation not supported
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.4.3
- */
- public const ER_OPNOTSUPP = 28;
- /**
- * Resource still in use
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.4.3
- */
- public const ER_INUSE = 29;
- /**
- * Tell error
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.4.3
- */
- public const ER_TELL = 30;
- /**
- * Compressed data invalid
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.4.3
- */
- public const ER_COMPRESSED_DATA = 31;
- /**
- * Operation cancelled
- * @link https://secure.php.net/manual/en/zip.constants.php
- * @since 7.4.3
- */
- public const ER_CANCELLED = 32;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_DOS = 0;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_AMIGA = 1;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_OPENVMS = 2;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_UNIX = 3;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_VM_CMS = 4;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_ATARI_ST = 5;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_OS_2 = 6;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_MACINTOSH = 7;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_Z_SYSTEM = 8;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @removed 8.0 Use {@link ZipArchive::ZOPSYS_CPM} instead.
- * @since 5.6
- */
- public const OPSYS_Z_CPM = 9;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_WINDOWS_NTFS = 10;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_MVS = 11;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_VSE = 12;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_ACORN_RISC = 13;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_VFAT = 14;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_ALTERNATE_MVS = 15;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_BEOS = 16;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_TANDEM = 17;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_OS_400 = 18;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_OS_X = 19;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- */
- public const OPSYS_CPM = 9;
- /**
- * @link https://www.php.net/manual/en/zip.constants.php#ziparchive.constants.opsys.default
- * @since 5.6
- */
- public const OPSYS_DEFAULT = 3;
- /**
- * Status of the Zip Archive
- * @var int
- */
- public $status;
- /**
- * System status of the Zip Archive
- * @var int
- */
- public $statusSys;
- /**
- * Number of files in archive
- * @var int
- */
- public $numFiles;
- /**
- * File name in the file system
- * @var string
- */
- public $filename;
- /**
- * Comment for the archive
- * @var string
- */
- public $comment;
- /**
- * @var int
- */
- public $lastId;
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.1.0)<br/>
- * Open a ZIP file archive
- *
- * @link https://php.net/manual/en/ziparchive.open.php
- *
- * @param string $filename <p>
- * The file name of the ZIP archive to open.
- * </p>
- * @param int $flags [optional] <p>
- * The mode to use to open the archive.
- * </p>
- * <p>
- * <b>ZipArchive::OVERWRITE</b>
- * </p>
- *
- * @return mixed <i>Error codes</i>
- * <p>
- * Returns <b>TRUE</b> on success or the error code.
- * </p>
- * <p>
- * <b>ZipArchive::ER_EXISTS</b>
- * </p>
- * <p>
- * File already exists.
- * </p>
- * <p>
- * <b>ZipArchive::ER_INCONS</b>
- * </p>
- * <p>
- * Zip archive inconsistent.
- * </p>
- * <p>
- * <b>ZipArchive::ER_INVAL</b>
- * </p>
- * <p>
- * Invalid argument.
- * </p>
- * <p>
- * <b>ZipArchive::ER_MEMORY</b>
- * </p>
- * <p>
- * Malloc failure.
- * </p>
- * <p>
- * <b>ZipArchive::ER_NOENT</b>
- * </p>
- * <p>
- * No such file.
- * </p>
- * <p>
- * <b>ZipArchive::ER_NOZIP</b>
- * </p>
- * <p>
- * Not a zip archive.
- * </p>
- * <p>
- * <b>ZipArchive::ER_OPEN</b>
- * </p>
- * <p>
- * Can't open file.
- * </p>
- * <p>
- * <b>ZipArchive::ER_READ</b>
- * </p>
- * <p>
- * Read error.
- * </p>
- * <p>
- * <b>ZipArchive::ER_SEEK</b>
- * </p>
- * <p>
- * Seek error.
- * </p>
- */
- public function open(
- $filename,
- $flags = null
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.1.0)<br/>
- * Close the active archive (opened or newly created)
- * @link https://php.net/manual/en/ziparchive.close.php
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function close() {}
- /**
- * (PHP 7 >= 7.2.0, PECL zip >= 1.15.0)<br/>
- * Counts the number of files in the archive.
- * @link https://www.php.net/manual/en/ziparchive.count.php
- * @return int
- * @since 7.2
- */
- public function count() {}
- /**
- * Returns the status error message, system and/or zip messages
- * @link https://php.net/manual/en/ziparchive.getstatusstring.php
- * @return string|false a string with the status message on success or <b>FALSE</b> on failure.
- * @since 5.2.7
- */
- public function getStatusString() {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.8.0)<br/>
- * Add a new directory
- * @link https://php.net/manual/en/ziparchive.addemptydir.php
- * @param string $dirname <p>
- * The directory to add.
- * </p>
- * @param int $flags [optional] Set how to manage name encoding (ZipArchive::FL_ENC_*) and entry replacement (ZipArchive::FL_OVERWRITE)
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function addEmptyDir(
- string $dirname,
- int $flags = 0
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.1.0)<br/>
- * Add a file to a ZIP archive using its contents
- * @link https://php.net/manual/en/ziparchive.addfromstring.php
- * @param string $name <p>
- * The name of the entry to create.
- * </p>
- * @param string $content <p>
- * The contents to use to create the entry. It is used in a binary
- * safe mode.
- * </p>
- * @param int $flags [optional] Set how to manage name encoding (ZipArchive::FL_ENC_*) and entry replacement (ZipArchive::FL_OVERWRITE)
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function addFromString(
- $name,
- $content,
- $flags = 8192
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.1.0)<br/>
- * Adds a file to a ZIP archive from the given path
- * @link https://php.net/manual/en/ziparchive.addfile.php
- * @param string $filepath <p>
- * The path to the file to add.
- * </p>
- * @param string $entryname [optional] <p>
- * If supplied, this is the local name inside the ZIP archive that will override the <i>filename</i>.
- * </p>
- * @param int $start [optional] <p>
- * This parameter is not used but is required to extend <b>ZipArchive</b>.
- * </p>
- * @param int $length [optional] <p>
- * This parameter is not used but is required to extend <b>ZipArchive</b>.
- * </p>
- * @param int $flags [optional] Set how to manage name encoding (ZipArchive::FL_ENC_*) and entry replacement (ZipArchive::FL_OVERWRITE)
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function addFile(
- $filepath,
- $entryname = null,
- $start = 0,
- $length = 0,
- $flags = 8192
- ) {}
- /**
- * (PHP 5 >= 5.3.0, PECL zip >= 1.9.0)<br/>
- * Add files from a directory by glob pattern
- * @link https://php.net/manual/en/ziparchive.addglob.php
- * @param string $pattern <p>
- * A <b>glob</b> pattern against which files will be matched.
- * </p>
- * @param int $flags [optional] <p>
- * A bit mask of glob() flags.
- * </p>
- * @param array $options [optional] <p>
- * An associative array of options. Available options are:
- * </p>
- * <p>
- * "add_path"
- * </p>
- * <p>
- * Prefix to prepend when translating to the local path of the file within
- * the archive. This is applied after any remove operations defined by the
- * "remove_path" or "remove_all_path"
- * options.
- * </p>
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function addGlob(
- $pattern,
- $flags = 0,
- array $options = []
- ) {}
- /**
- * (PHP 5 >= 5.3.0, PECL zip >= 1.9.0)<br/>
- * Add files from a directory by PCRE pattern
- * @link https://php.net/manual/en/ziparchive.addpattern.php
- * @param string $pattern <p>
- * A PCRE pattern against which files will be matched.
- * </p>
- * @param string $path [optional] <p>
- * The directory that will be scanned. Defaults to the current working directory.
- * </p>
- * @param array $options [optional] <p>
- * An associative array of options accepted by <b>ZipArchive::addGlob</b>.
- * </p>
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function addPattern(
- $pattern,
- $path = '.',
- array $options = []
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.5.0)<br/>
- * Renames an entry defined by its index
- * @link https://php.net/manual/en/ziparchive.renameindex.php
- * @param int $index <p>
- * Index of the entry to rename.
- * </p>
- * @param string $new_name <p>
- * New name.
- * </p>
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function renameIndex(
- $index,
- $new_name
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.5.0)<br/>
- * Renames an entry defined by its name
- * @link https://php.net/manual/en/ziparchive.renamename.php
- * @param string $name <p>
- * Name of the entry to rename.
- * </p>
- * @param string $new_name <p>
- * New name.
- * </p>
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function renameName(
- $name,
- $new_name
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.4.0)<br/>
- * Set the comment of a ZIP archive
- * @link https://php.net/manual/en/ziparchive.setarchivecomment.php
- * @param string $comment <p>
- * The contents of the comment.
- * </p>
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function setArchiveComment( $comment) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.1.0)<br/>
- * Returns the Zip archive comment
- * @link https://php.net/manual/en/ziparchive.getarchivecomment.php
- * @param int $flags [optional] <p>
- * If flags is set to <b>ZipArchive::FL_UNCHANGED</b>, the original unchanged
- * comment is returned.
- * </p>
- * @return string|false the Zip archive comment or <b>FALSE</b> on failure.
- */
- public function getArchiveComment( $flags = null) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.4.0)<br/>
- * Set the comment of an entry defined by its index
- * @link https://php.net/manual/en/ziparchive.setcommentindex.php
- * @param int $index <p>
- * Index of the entry.
- * </p>
- * @param string $comment <p>
- * The contents of the comment.
- * </p>
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function setCommentIndex(
- $index,
- $comment
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.4.0)<br/>
- * Set the comment of an entry defined by its name
- * @link https://php.net/manual/en/ziparchive.setcommentname.php
- * @param string $name <p>
- * Name of the entry.
- * </p>
- * @param string $comment <p>
- * The contents of the comment.
- * </p>
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function setCommentName(
- $name,
- $comment
- ) {}
- /**
- * Set the compression method of an entry defined by its index
- * @link https://php.net/manual/en/ziparchive.setcompressionindex.php
- * @param int $index Index of the entry.
- * @param int $method The compression method. Either ZipArchive::CM_DEFAULT, ZipArchive::CM_STORE or ZipArchive::CM_DEFLATE.
- * @param int $compflags [optional] Compression flags. Currently unused.
- * @return bool Returns TRUE on success or FALSE on failure.
- * @since 7.0
- */
- public function setCompressionIndex(int $index, int $method, int $compflags = 0) {}
- /**
- * Set the compression method of an entry defined by its name
- * https://secure.php.net/manual/en/ziparchive.setcompressionname.php
- * @param string $name Name of the entry.
- * @param int $method The compression method. Either ZipArchive::CM_DEFAULT, ZipArchive::CM_STORE or ZipArchive::CM_DEFLATE.
- * @param int $compflags [optional] Compression flags. Currently unused.
- * @return bool Returns TRUE on success or FALSE on failure.
- * @since 7.0
- */
- public function setCompressionName(string $name, int $method, int $compflags = 0) {}
- /**
- * Set the encryption method of an entry defined by its index
- * @link https://php.net/manual/en/ziparchive.setencryptionindex.php
- * @param int $index Index of the entry.
- * @param int $method The encryption method defined by one of the ZipArchive::EM_ constants.
- * @param string|null $password [optional] Optional password, default used when missing.
- * @return bool Returns TRUE on success or FALSE on failure.
- * @since 7.2
- */
- public function setEncryptionIndex(int $index, int $method, ?string $password = null) {}
- /**
- * Set the encryption method of an entry defined by its name
- * @link https://php.net/manual/en/ziparchive.setencryptionname.php
- * @param string $name Name of the entry.
- * @param int $method The encryption method defined by one of the ZipArchive::EM_ constants.
- * @param string|null $password [optional] Optional password, default used when missing.
- * @return bool Returns TRUE on success or FALSE on failure.
- * @since 7.2
- */
- public function setEncryptionName(string $name, int $method, ?string $password = null) {}
- /**
- * (PHP 5 >= 5.6.0, PECL zip >= 1.12.0)<br/>
- * @param string $password
- * @return bool
- */
- public function setPassword( $password) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.4.0)<br/>
- * Returns the comment of an entry using the entry index
- * @link https://php.net/manual/en/ziparchive.getcommentindex.php
- * @param int $index <p>
- * Index of the entry
- * </p>
- * @param int $flags [optional] <p>
- * If flags is set to <b>ZipArchive::FL_UNCHANGED</b>, the original unchanged
- * comment is returned.
- * </p>
- * @return string|false the comment on success or <b>FALSE</b> on failure.
- */
- public function getCommentIndex(
- $index,
- $flags = null
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.4.0)<br/>
- * Returns the comment of an entry using the entry name
- * @link https://php.net/manual/en/ziparchive.getcommentname.php
- * @param string $name <p>
- * Name of the entry
- * </p>
- * @param int $flags [optional] <p>
- * If flags is set to <b>ZipArchive::FL_UNCHANGED</b>, the original unchanged
- * comment is returned.
- * </p>
- * @return string|false the comment on success or <b>FALSE</b> on failure.
- */
- public function getCommentName(
- $name,
- $flags = null
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.5.0)<br/>
- * delete an entry in the archive using its index
- * @link https://php.net/manual/en/ziparchive.deleteindex.php
- * @param int $index <p>
- * Index of the entry to delete.
- * </p>
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function deleteIndex( $index) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.5.0)<br/>
- * delete an entry in the archive using its name
- * @link https://php.net/manual/en/ziparchive.deletename.php
- * @param string $name <p>
- * Name of the entry to delete.
- * </p>
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function deleteName( $name) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.5.0)<br/>
- * Get the details of an entry defined by its name.
- * @link https://php.net/manual/en/ziparchive.statname.php
- * @param string $name <p>
- * Name of the entry
- * </p>
- * @param int $flags [optional] <p>
- * The flags argument specifies how the name lookup should be done.
- * Also, <b>ZipArchive::FL_UNCHANGED</b> may be ORed to it to request
- * information about the original file in the archive,
- * ignoring any changes made.
- * <b>ZipArchive::FL_NOCASE</b>
- * </p>
- * @return array|false an array containing the entry details or <b>FALSE</b> on failure.
- */
- public function statName(
- $name,
- $flags = null
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.1.0)<br/>
- * Get the details of an entry defined by its index.
- * @link https://php.net/manual/en/ziparchive.statindex.php
- * @param int $index <p>
- * Index of the entry
- * </p>
- * @param int $flags [optional] <p>
- * <b>ZipArchive::FL_UNCHANGED</b> may be ORed to it to request
- * information about the original file in the archive,
- * ignoring any changes made.
- * </p>
- * @return array|false an array containing the entry details or <b>FALSE</b> on failure.
- */
- public function statIndex(
- $index,
- $flags = null
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.5.0)<br/>
- * Returns the index of the entry in the archive
- * @link https://php.net/manual/en/ziparchive.locatename.php
- * @param string $name <p>
- * The name of the entry to look up
- * </p>
- * @param int $flags [optional] <p>
- * The flags are specified by ORing the following values,
- * or 0 for none of them.
- * <b>ZipArchive::FL_NOCASE</b>
- * </p>
- * @return int|false the index of the entry on success or <b>FALSE</b> on failure.
- */
- public function locateName(
- $name,
- $flags = null
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.5.0)<br/>
- * Returns the name of an entry using its index
- * @link https://php.net/manual/en/ziparchive.getnameindex.php
- * @param int $index <p>
- * Index of the entry.
- * </p>
- * @param int $flags [optional] <p>
- * If flags is set to <b>ZipArchive::FL_UNCHANGED</b>, the original unchanged
- * name is returned.
- * </p>
- * @return string|false the name on success or <b>FALSE</b> on failure.
- */
- public function getNameIndex(
- $index,
- $flags = null
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.1.0)<br/>
- * Revert all global changes done in the archive.
- * @link https://php.net/manual/en/ziparchive.unchangearchive.php
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function unchangeArchive() {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.1.0)<br/>
- * Undo all changes done in the archive
- * @link https://php.net/manual/en/ziparchive.unchangeall.php
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function unchangeAll() {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.1.0)<br/>
- * Revert all changes done to an entry at the given index
- * @link https://php.net/manual/en/ziparchive.unchangeindex.php
- * @param int $index <p>
- * Index of the entry.
- * </p>
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function unchangeIndex( $index) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.5.0)<br/>
- * Revert all changes done to an entry with the given name.
- * @link https://php.net/manual/en/ziparchive.unchangename.php
- * @param string $name <p>
- * Name of the entry.
- * </p>
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function unchangeName( $name) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.1.0)<br/>
- * Extract the archive contents
- * @link https://php.net/manual/en/ziparchive.extractto.php
- * @param string $pathto <p>
- * Location where to extract the files.
- * </p>
- * @param mixed $files [optional] <p>
- * The entries to extract. It accepts either a single entry name or
- * an array of names.
- * </p>
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function extractTo(
- $pathto,
- $files = null
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.1.0)<br/>
- * Returns the entry contents using its name
- * @link https://php.net/manual/en/ziparchive.getfromname.php
- * @param string $name <p>
- * Name of the entry
- * </p>
- * @param int $len [optional] <p>
- * The length to be read from the entry. If 0, then the
- * entire entry is read.
- * </p>
- * @param int $flags [optional] <p>
- * The flags to use to open the archive. the following values may
- * be ORed to it.
- * <b>ZipArchive::FL_UNCHANGED</b>
- * </p>
- * @return string|false the contents of the entry on success or <b>FALSE</b> on failure.
- */
- public function getFromName(
- $name,
- $len = 0,
- $flags = null
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.3.0)<br/>
- * Returns the entry contents using its index
- * @link https://php.net/manual/en/ziparchive.getfromindex.php
- * @param int $index <p>
- * Index of the entry
- * </p>
- * @param int $len [optional] <p>
- * The length to be read from the entry. If 0, then the
- * entire entry is read.
- * </p>
- * @param int $flags [optional] <p>
- * The flags to use to open the archive. the following values may
- * be ORed to it.
- * </p>
- * <p>
- * <b>ZipArchive::FL_UNCHANGED</b>
- * </p>
- * @return string|false the contents of the entry on success or <b>FALSE</b> on failure.
- */
- public function getFromIndex(
- $index,
- $len = 0,
- $flags = null
- ) {}
- /**
- * (PHP 5 >= 5.2.0, PECL zip >= 1.1.0)<br/>
- * Get a file handler to the entry defined by its name (read only).
- * @link https://php.net/manual/en/ziparchive.getstream.php
- * @param string $name <p>
- * The name of the entry to use.
- * </p>
- * @return resource|false a file pointer (resource) on success or <b>FALSE</b> on failure.
- */
- public function getStream( $name) {}
- /**
- * Set the external attributes of an entry defined by its name
- * @link https://www.php.net/manual/en/ziparchive.setexternalattributesname.php
- * @param string $name Name of the entry
- * @param int $opsys The operating system code defined by one of the ZipArchive::OPSYS_ constants.
- * @param int $attr The external attributes. Value depends on operating system.
- * @param int $flags [optional] Optional flags. Currently unused.
- * @return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function setExternalAttributesName(
- $name,
- $opsys,
- $attr,
- $flags = null
- ) {}
- /**
- * Retrieve the external attributes of an entry defined by its name
- * @link https://www.php.net/manual/en/ziparchive.getexternalattributesname.php
- * @param string $name Name of the entry
- * @param int &$opsys On success, receive the operating system code defined by one of the ZipArchive::OPSYS_ constants.
- * @param int &$attr On success, receive the external attributes. Value depends on operating system.
- * @param int $flags [optional] If flags is set to ZipArchive::FL_UNCHANGED, the original unchanged attributes are returned.
- * @return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function getExternalAttributesName(
- $name,
- &$opsys,
- &$attr,
- $flags = null
- ) {}
- /**
- * Set the external attributes of an entry defined by its index
- * @link https://www.php.net/manual/en/ziparchive.setexternalattributesindex.php
- * @param int $index Index of the entry.
- * @param int $opsys The operating system code defined by one of the ZipArchive::OPSYS_ constants.
- * @param int $attr The external attributes. Value depends on operating system.
- * @param int $flags [optional] Optional flags. Currently unused.
- * @return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function setExternalAttributesIndex(
- $index,
- $opsys,
- $attr,
- $flags = null
- ) {}
- /**
- * Retrieve the external attributes of an entry defined by its index
- * @link https://www.php.net/manual/en/ziparchive.getexternalattributesindex.php
- * @param int $index Index of the entry.
- * @param int &$opsys On success, receive the operating system code defined by one of the ZipArchive::OPSYS_ constants.
- * @param int &$attr On success, receive the external attributes. Value depends on operating system.
- * @param int $flags [optional] If flags is set to ZipArchive::FL_UNCHANGED, the original unchanged attributes are returned.
- * @return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure.
- */
- public function getExternalAttributesIndex(
- $index,
- &$opsys,
- &$attr,
- $flags = null
- ) {}
- public static function isEncryptionMethodSupported(
- $method,
- $enc = true
- ) {}
- public static function isCompressionMethodSupported(
- $method,
- $enc = true
- ) {}
- public function registerCancelCallback( $callback) {}
- public function registerProgressCallback(
- $rate,
- $callback
- ) {}
- public function setMtimeName(
- $name,
- $timestamp,
- $flags = null
- ) {}
- public function setMtimeIndex(
- $index,
- $timestamp,
- $flags = null
- ) {}
- public function replaceFile(
- $filepath,
- $index,
- $start = null,
- $length = null,
- $flags = null
- ) {}
- }
- /**
- * (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)<br/>
- * Open a ZIP file archive
- * @link https://php.net/manual/en/function.zip-open.php
- * @param string $filename <p>
- * The file name of the ZIP archive to open.
- * </p>
- * @return resource|int|false a resource handle for later use with
- * <b>zip_read</b> and <b>zip_close</b>
- * or returns the number of error if <i>filename</i> does not
- * exist or in case of other error.
- * @deprecated 8.0 Use {@link ZipArchive} instead.
- */
- function zip_open(string $filename) {}
- /**
- * (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)<br/>
- * Close a ZIP file archive
- * @link https://php.net/manual/en/function.zip-close.php
- * @param resource $zip <p>
- * A ZIP file previously opened with <b>zip_open</b>.
- * </p>
- * @return void No value is returned.
- * @deprecated 8.0 Use {@link ZipArchive} instead.
- */
- function zip_close($zip): void {}
- /**
- * (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)<br/>
- * Read next entry in a ZIP file archive
- * @link https://php.net/manual/en/function.zip-read.php
- * @param resource $zip <p>
- * A ZIP file previously opened with <b>zip_open</b>.
- * </p>
- * @return resource|false a directory entry resource for later use with the
- * zip_entry_... functions, or <b>FALSE</b> if
- * there are no more entries to read, or an error code if an error
- * occurred.
- * @deprecated 8.0 Use {@link ZipArchive} instead.
- */
- function zip_read($zip) {}
- /**
- * (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)<br/>
- * Open a directory entry for reading
- * @link https://php.net/manual/en/function.zip-entry-open.php
- * @param resource $zip_dp <p>
- * A valid resource handle returned by <b>zip_open</b>.
- * </p>
- * @param resource $zip_entry <p>
- * A directory entry returned by <b>zip_read</b>.
- * </p>
- * @param string $mode [optional] <p>
- * Any of the modes specified in the documentation of
- * <b>fopen</b>.
- * </p>
- * <p>
- * Currently, <i>mode</i> is ignored and is always
- * "rb". This is due to the fact that zip support
- * in PHP is read only access.
- * </p>
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- * <p>
- * Unlike <b>fopen</b> and other similar functions,
- * the return value of <b>zip_entry_open</b> only
- * indicates the result of the operation and is not needed for
- * reading or closing the directory entry.
- * </p>
- */
- function zip_entry_open($zip_dp, $zip_entry, string $mode = 'rb'): bool {}
- /**
- * (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)<br/>
- * Close a directory entry
- * @link https://php.net/manual/en/function.zip-entry-close.php
- * @param resource $zip_entry <p>
- * A directory entry previously opened <b>zip_entry_open</b>.
- * </p>
- * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- * @deprecated 8.0 Use {@link ZipArchive} instead.
- */
- function zip_entry_close($zip_entry): bool {}
- /**
- * (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)<br/>
- * Read from an open directory entry
- * @link https://php.net/manual/en/function.zip-entry-read.php
- * @param resource $zip_entry <p>
- * A directory entry returned by <b>zip_read</b>.
- * </p>
- * @param int $len [optional] <p>
- * The number of bytes to return.
- * </p>
- * <p>
- * This should be the uncompressed length you wish to read.
- * </p>
- * @return string|false the data read, empty string on end of a file, or <b>FALSE</b> on error.
- * @deprecated 8.0 Use {@link ZipArchive} instead.
- */
- function zip_entry_read($zip_entry, int $len = 1024): string|false {}
- /**
- * (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)<br/>
- * Retrieve the actual file size of a directory entry
- * @link https://php.net/manual/en/function.zip-entry-filesize.php
- * @param resource $zip_entry <p>
- * A directory entry returned by <b>zip_read</b>.
- * </p>
- * @return int|false The size of the directory entry.
- * @deprecated 8.0 Use {@link ZipArchive} instead.
- */
- function zip_entry_filesize($zip_entry): int|false {}
- /**
- * (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)<br/>
- * Retrieve the name of a directory entry
- * @link https://php.net/manual/en/function.zip-entry-name.php
- * @param resource $zip_entry <p>
- * A directory entry returned by <b>zip_read</b>.
- * </p>
- * @return string|false The name of the directory entry.
- * @deprecated 8.0 Use {@link ZipArchive} instead.
- */
- function zip_entry_name($zip_entry): string|false {}
- /**
- * (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)<br/>
- * Retrieve the compressed size of a directory entry
- * @link https://php.net/manual/en/function.zip-entry-compressedsize.php
- * @param resource $zip_entry <p>
- * A directory entry returned by <b>zip_read</b>.
- * </p>
- * @return int|false The compressed size.
- * @deprecated 8.0 Use {@link ZipArchive} instead.
- */
- function zip_entry_compressedsize($zip_entry): int|false {}
- /**
- * (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)<br/>
- * Retrieve the compression method of a directory entry
- * @link https://php.net/manual/en/function.zip-entry-compressionmethod.php
- * @param resource $zip_entry <p>
- * A directory entry returned by <b>zip_read</b>.
- * </p>
- * @return string|false The compression method.
- * @deprecated 8.0 Use {@link ZipArchive} instead.
- */
- function zip_entry_compressionmethod($zip_entry): string|false {}
- // End of zip v.1.11.0
|