<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.zip.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'zip.constants.php',
    1 => 'Попередньо визначені константи',
    2 => 'Попередньо визначені константи',
  ),
  'up' => 
  array (
    0 => 'book.zip.php',
    1 => 'Zip',
  ),
  'prev' => 
  array (
    0 => 'zip.resources.php',
    1 => 'Типи ресурсів',
  ),
  'next' => 
  array (
    0 => 'zip.examples.php',
    1 => 'Приклади',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/zip/constants.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="zip.constants" class="appendix">
 <h1 class="title">Попередньо визначені константи</h1>

 <p class="simpara">
Константи, описані нижче — визначені цим розширенням, тож доступні, коли
розширення скомпільовано як частина PHP або динамічно підключене під час
виконання.
</p>

  <p class="para">
   <span class="classname"><a href="class.ziparchive.php" class="classname">ZipArchive</a></span> uses class constants. 
   There are various types of constants, main are:
   Flags (prefixed with <code class="literal">FL_</code>),
   Global flags  (prefixed with <code class="literal">AFL_</code>),
   errors (prefixed with <code class="literal">ER_</code>) and
   mode (no prefix).
  </p>

 <dl id="ziparchive.constants.mode">
  <strong class="title">Archive open modes</strong>
  
   <dt id="ziparchive.constants.create">
    <strong><code><a href="zip.constants.php#ziparchive.constants.create">ZipArchive::CREATE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Create the archive if it does not exist.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.overwrite">
    <strong><code><a href="zip.constants.php#ziparchive.constants.overwrite">ZipArchive::OVERWRITE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     If archive exists, ignore its current contents.
     In other words, handle it the same way as an empty archive.
    </span>
   </dd>
  

  
   <dt id="ziparchive.constants.excl">
    <strong><code><a href="zip.constants.php#ziparchive.constants.excl">ZipArchive::EXCL</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Error if archive already exists.
    </span>
   </dd>
  

  
   <dt id="ziparchive.constants.rdonly">
    <strong><code><a href="zip.constants.php#ziparchive.constants.rdonly">ZipArchive::RDONLY</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Open archive in read only mode.
     Available as of PHP 7.4.3 and PECL zip 1.17.1, respectively,
     if built against libzip ≥ 1.0.0.
    </span>
   </dd>
  

  
   <dt id="ziparchive.constants.checkcons">
    <strong><code><a href="zip.constants.php#ziparchive.constants.checkcons">ZipArchive::CHECKCONS</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Perform additional consistency checks on the archive, and error if they fail.
    </span>
   </dd>
  
 </dl>

 <dl id="ziparchive.constants.afl">
  <strong class="title">Archive global flags</strong>
  
   <dt id="ziparchive.constants.afl-rdonly">
    <strong><code><a href="zip.constants.php#ziparchive.constants.afl-rdonly">ZipArchive::AFL_RDONLY</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Archive is read only, cannot be cleared.
     Available as of PHP 8.3.0 and PECL zip 1.22.0, respectively,
     if built against libzip ≥ 1.10.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.afl-is-torrentzip">
    <strong><code><a href="zip.constants.php#ziparchive.constants.afl-is-torrentzip">ZipArchive::AFL_IS_TORRENTZIP</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Current archive is torrentzipped.
     Available as of PHP 8.3.0 and PECL zip 1.22.0, respectively,
     if built against libzip ≥ 1.10.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.afl-want-torrentzip">
    <strong><code><a href="zip.constants.php#ziparchive.constants.afl-want-torrentzip">ZipArchive::AFL_WANT_TORRENTZIP</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Write archive in torrentzip format.
     Available as of PHP 8.3.0 and PECL zip 1.22.0, respectively,
     if built against libzip ≥ 1.10.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.afl-create-or-keep-file-for-empty-archive">
    <strong><code><a href="zip.constants.php#ziparchive.constants.afl-create-or-keep-file-for-empty-archive">ZipArchive::AFL_CREATE_OR_KEEP_FILE_FOR_EMPTY_ARCHIVE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Don&#039;t remove file if archive is empty.
     Available as of PHP 8.3.0 and PECL zip 1.22.0, respectively,
     if built against libzip ≥ 1.10.0.
    </span>
   </dd>
  
 </dl>

 <dl id="ziparchive.constants.fl">
  <strong class="title">Archive flags</strong>
  
   <dt id="ziparchive.constants.fl-nocase">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-nocase">ZipArchive::FL_NOCASE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Ignore case on name lookup
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.fl-nodir">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-nodir">ZipArchive::FL_NODIR</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Ignore directory component
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.fl-compressed">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-compressed">ZipArchive::FL_COMPRESSED</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Read compressed data
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.fl-unchanged">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-unchanged">ZipArchive::FL_UNCHANGED</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Use original data, ignoring changes.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.fl-recompress">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-recompress">ZipArchive::FL_RECOMPRESS</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Force recompression of data.
     Available as of PHP 8.0.0 and PECL zip 1.18.0.
     Deprecated as of PHP 8.3.0 and PECL zip 1.22.1,
     will be removed in a future version of libzip.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.fl-encrypted">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-encrypted">ZipArchive::FL_ENCRYPTED</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Read encrypted data (implies FL_COMPRESSED).
     Available as of PHP 8.0.0 and PECL zip 1.18.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.fl-overwrite">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-overwrite">ZipArchive::FL_OVERWRITE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     If file with name exists, overwrite (replace) it.
     Available as of PHP 8.0.0 and PECL zip 1.18.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.fl-local">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-local">ZipArchive::FL_LOCAL</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     In local header.
     Available as of PHP 8.0.0 and PECL zip 1.18.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.fl-central">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-central">ZipArchive::FL_CENTRAL</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     In central directory.
     Available as of PHP 8.0.0 and PECL zip 1.18.0.
    </span>
   </dd>
  

  
   <dt id="ziparchive.constants.fl-enc-guess">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-enc-guess">ZipArchive::FL_ENC_GUESS</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Guess string encoding (is default). Available as of PHP 7.0.8.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.fl-enc-raw">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-enc-raw">ZipArchive::FL_ENC_RAW</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Get unmodified string. Available as of PHP 7.0.8.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.fl-enc-strict">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-enc-strict">ZipArchive::FL_ENC_STRICT</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Follow specification strictly. Available as of PHP 7.0.8.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.fl-enc-utf-8">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-enc-utf-8">ZipArchive::FL_ENC_UTF_8</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     String is UTF-8 encoded. Available as of PHP 7.0.8.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.fl-enc-cp437">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-enc-cp437">ZipArchive::FL_ENC_CP437</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     String is CP437 encoded. Available as of PHP 7.0.8.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.fl-open-file-now">
    <strong><code><a href="zip.constants.php#ziparchive.constants.fl-open-file-now">ZipArchive::FL_OPEN_FILE_NOW</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Open the file when added instead of waiting for archive to be closed.
     Be aware of file descriptors consumption.
     Available as of PHP 8.3.0 and PECL zip 1.22.1.
    </span>
   </dd>
  
 </dl>

 <dl id="ziparchive.constants.cm">
  <strong class="title">Compression modes</strong>
  
   <dt id="ziparchive.constants.cm-default">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-default">ZipArchive::CM_DEFAULT</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     better of deflate or store.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-store">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-store">ZipArchive::CM_STORE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     stored (uncompressed).
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-shrink">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-shrink">ZipArchive::CM_SHRINK</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     shrunk
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-reduce-1">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-reduce-1">ZipArchive::CM_REDUCE_1</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     reduced with factor 1
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-reduce-2">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-reduce-2">ZipArchive::CM_REDUCE_2</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     reduced with factor 2
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-reduce-3">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-reduce-3">ZipArchive::CM_REDUCE_3</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     reduced with factor 3
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-reduce-4">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-reduce-4">ZipArchive::CM_REDUCE_4</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     reduced with factor 4
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-implode">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-implode">ZipArchive::CM_IMPLODE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     imploded
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-deflate">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-deflate">ZipArchive::CM_DEFLATE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     deflated
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-deflate64">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-deflate64">ZipArchive::CM_DEFLATE64</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     deflate64
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-pkware-implode">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-pkware-implode">ZipArchive::CM_PKWARE_IMPLODE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     PKWARE imploding
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-bzip2">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-bzip2">ZipArchive::CM_BZIP2</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     BZIP2 algorithm
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-lzma">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-lzma">ZipArchive::CM_LZMA</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     LZMA algorithm
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-lzma2">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-lzma2">ZipArchive::CM_LZMA2</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     LZMA2 algorithm.
     Available as of PHP 7.4.3 and PECL zip 1.16.0, respectively,
     if built against libzip ≥ 1.6.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-zstd">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-zstd">ZipArchive::CM_ZSTD</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Zstandard algorithm.
     Available as of PHP 8.0.0 and PECL zip 1.19.1, respectively,
     if built against libzip ≥ 1.8.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-xz">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-xz">ZipArchive::CM_XZ</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     XZ algorithm.
     Available as of PHP 7.4.3 and PECL zip 1.16.1, respectively,
     if built against libzip ≥ 1.6.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-terse">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-terse">ZipArchive::CM_TERSE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-lz77">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-lz77">ZipArchive::CM_LZ77</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-wavpack">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-wavpack">ZipArchive::CM_WAVPACK</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.cm-ppmd">
    <strong><code><a href="zip.constants.php#ziparchive.constants.cm-ppmd">ZipArchive::CM_PPMD</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
 </dl>

 <dl id="ziparchive.constants.er">
  <strong class="title">Errors</strong>
  
   <dt id="ziparchive.constants.er-ok">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-ok">ZipArchive::ER_OK</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     No error.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-multidisk">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-multidisk">ZipArchive::ER_MULTIDISK</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Multi-disk zip archives not supported.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-rename">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-rename">ZipArchive::ER_RENAME</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Renaming temporary file failed.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-close">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-close">ZipArchive::ER_CLOSE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Closing zip archive failed
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-seek">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-seek">ZipArchive::ER_SEEK</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
      Seek error
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-read">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-read">ZipArchive::ER_READ</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Read error
    </span>
   </dd>
  

  
   <dt id="ziparchive.constants.er-write">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-write">ZipArchive::ER_WRITE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Write error
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-crc">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-crc">ZipArchive::ER_CRC</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     CRC error
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-zipclosed">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-zipclosed">ZipArchive::ER_ZIPCLOSED</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Containing zip archive was closed
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-noent">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-noent">ZipArchive::ER_NOENT</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     No such file.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-exists">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-exists">ZipArchive::ER_EXISTS</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     File already exists
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-open">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-open">ZipArchive::ER_OPEN</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Can&#039;t open file
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-tmpopen">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-tmpopen">ZipArchive::ER_TMPOPEN</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Failure to create temporary file.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-zlib">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-zlib">ZipArchive::ER_ZLIB</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Zlib error
    </span>
   </dd>
  

  
   <dt id="ziparchive.constants.er-memory">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-memory">ZipArchive::ER_MEMORY</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Memory allocation failure
    </span>
   </dd>
  

  
   <dt id="ziparchive.constants.er-changed">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-changed">ZipArchive::ER_CHANGED</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Entry has been changed
    </span>
   </dd>
  

  
   <dt id="ziparchive.constants.er-compnotsupp">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-compnotsupp">ZipArchive::ER_COMPNOTSUPP</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Compression method not supported.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-eof">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-eof">ZipArchive::ER_EOF</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Premature EOF
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-inval">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-inval">ZipArchive::ER_INVAL</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Invalid argument
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-nozip">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-nozip">ZipArchive::ER_NOZIP</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Not a zip archive
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-internal">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-internal">ZipArchive::ER_INTERNAL</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Internal error
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-incons">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-incons">ZipArchive::ER_INCONS</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Zip archive inconsistent
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-remove">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-remove">ZipArchive::ER_REMOVE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Can&#039;t remove file
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-deleted">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-deleted">ZipArchive::ER_DELETED</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Entry has been deleted
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-encrnotsupp">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-encrnotsupp">ZipArchive::ER_ENCRNOTSUPP</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Encryption method not supported.
     Available as of PHP 7.4.3 and PECL zip 1.16.1, respectively.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-rdonly">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-rdonly">ZipArchive::ER_RDONLY</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Read-only archive.
     Available as of PHP 7.4.3 and PECL zip 1.16.1, respectively.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-nopasswd">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-nopasswd">ZipArchive::ER_NOPASSWD</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     No password provided.
     Available as of PHP 7.4.3 and PECL zip 1.16.1, respectively.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-wrongpasswd">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-wrongpasswd">ZipArchive::ER_WRONGPASSWD</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Wrong password provided.
     Available as of PHP 7.4.3 and PECL zip 1.16.1, respectively.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-opnotsupp">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-opnotsupp">ZipArchive::ER_OPNOTSUPP</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Operation not supported.
     Available as of PHP 7.4.3 and PECL zip 1.16.1, respectively,
     if built against libzip ≥ 1.0.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-inuse">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-inuse">ZipArchive::ER_INUSE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Resource still in use.
     Available as of PHP 7.4.3 and PECL zip 1.16.1, respectively,
     if built against libzip ≥ 1.0.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-tell">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-tell">ZipArchive::ER_TELL</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Tell error.
     Available as of PHP 7.4.3 and PECL zip 1.16.1, respectively,
     if built against libzip ≥ 1.0.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-compressed-data">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-compressed-data">ZipArchive::ER_COMPRESSED_DATA</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Compressed data invalid.
     Available as of PHP 7.4.3 and PECL zip 1.16.1, respectively,
     if built against libzip ≥ 1.6.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-cancelled">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-cancelled">ZipArchive::ER_CANCELLED</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Operation cancelled.
     Available as of PHP 7.4.3 and PECL zip 1.16.1, respectively,
     if built against libzip ≥ 1.6.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-data-length">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-data-length">ZipArchive::ER_DATA_LENGTH</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Unexpected length of data.
     Available as of PHP 8.3.0 and PECL zip 1.22.0, respectively,
     if built against libzip ≥ 1.10.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-not-allowed">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-not-allowed">ZipArchive::ER_NOT_ALLOWED</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Not allowed in torrentzip.
     Available as of PHP 8.3.0 and PECL zip 1.22.0, respectively,
     if built against libzip ≥ 1.10.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.er-truncated-zip">
    <strong><code><a href="zip.constants.php#ziparchive.constants.er-truncated-zip">ZipArchive::ER_TRUNCATED_ZIP</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Possibly truncated or corrupted zip archive.
     Available as of PHP 8.4.0 and PECL zip 1.22.4, respectively,
     if built against libzip ≥ 1.11.1.
    </span>
   </dd>
  
 </dl>

 <dl id="ziparchive.constants.em">
  <strong class="title">Encryption modes</strong>
  
   <dt id="ziparchive.constants.em-none">
    <strong><code><a href="zip.constants.php#ziparchive.constants.em-none">ZipArchive::EM_NONE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     No encryption. Available as of PHP 7.2.0 and PECL zip 1.14.0, respectively.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.em-trad-pkware">
    <strong><code><a href="zip.constants.php#ziparchive.constants.em-trad-pkware">ZipArchive::EM_TRAD_PKWARE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Traditional PKWARE encryption. Available as of PHP 8.0.0 and PECL zip 1.19.0, respectively.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.em-aes-128">
    <strong><code><a href="zip.constants.php#ziparchive.constants.em-aes-128">ZipArchive::EM_AES_128</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     AES 128 encryption. Available as of PHP 7.2.0 and PECL zip 1.14.0, respectively,
     if built against libzip ≥ 1.2.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.em-aes-192">
    <strong><code><a href="zip.constants.php#ziparchive.constants.em-aes-192">ZipArchive::EM_AES_192</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     AES 192 encryption. Available as of PHP 7.2.0 and PECL zip 1.14.0, respectively,
     if built against libzip ≥ 1.2.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.em-aes-256">
    <strong><code><a href="zip.constants.php#ziparchive.constants.em-aes-256">ZipArchive::EM_AES_256</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     AES 256 encryption. Available as of PHP 7.2.0 and PECL zip 1.14.0, respectively,
     if built against libzip ≥ 1.2.0.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.em-unknown">
    <strong><code><a href="zip.constants.php#ziparchive.constants.em-unknown">ZipArchive::EM_UNKNOWN</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Unknown encryption algorithm. Available as of PHP 8.0.0 and PECL zip 1.19.0, respectively.
    </span>
   </dd>
  
 </dl>

 <dl id="ziparchive.constants.length">
  <strong class="title">Length parameter constants</strong>
  
   <dt id="ziparchive.constants.length-to-end">
    <strong><code><a href="zip.constants.php#ziparchive.constants.length-to-end">ZipArchive::LENGTH_TO_END</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Use file size, if the file grows additionnal data is ignored, if the file shrinks an error is raised (<strong><code><a href="zip.constants.php#ziparchive.constants.er-data-length">ZipArchive::ER_DATA_LENGTH</a></code></strong>).
     Available as of PHP 8.3.0 and PECL zip 1.22.2.
    </span>
   </dd>
  
  
   <dt id="ziparchive.constants.length-unchecked">
    <strong><code><a href="zip.constants.php#ziparchive.constants.length-unchecked">ZipArchive::LENGTH_UNCHECKED</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Use all available data.
     Available as of PHP 8.3.0 and PECL zip 1.22.2, if built against libzip ≥ 1.10.1.
    </span>
   </dd>
  
 </dl>

 <dl id="ziparchive.constants.other">
  <strong class="title">Other constants</strong>
  
   <dt id="ziparchive.constants.libzip-version">
    <strong><code><a href="zip.constants.php#ziparchive.constants.libzip-version">ZipArchive::LIBZIP_VERSION</a></code></strong>
    (<span class="type"><a href="language.types.string.php" class="type string">string</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Zip library version. Available as of PHP 7.4.3 and PECL zip 1.16.0.
    </span>
   </dd>
  
 </dl>

 <dl id="ziparchive.constants.opsys">
  <strong class="title">Operating system constants for external attributes</strong>
  
   <dt id="ziparchive.constants.opsys-dos">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-dos">ZipArchive::OPSYS_DOS</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-amiga">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-amiga">ZipArchive::OPSYS_AMIGA</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-openvms">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-openvms">ZipArchive::OPSYS_OPENVMS</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-unix">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-unix">ZipArchive::OPSYS_UNIX</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-vm-cms">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-vm-cms">ZipArchive::OPSYS_VM_CMS</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-atari-st">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-atari-st">ZipArchive::OPSYS_ATARI_ST</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-os-2">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-os-2">ZipArchive::OPSYS_OS_2</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-macintosh">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-macintosh">ZipArchive::OPSYS_MACINTOSH</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-z-system">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-z-system">ZipArchive::OPSYS_Z_SYSTEM</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-cpm">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-cpm">ZipArchive::OPSYS_CPM</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-windows-ntfs">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-windows-ntfs">ZipArchive::OPSYS_WINDOWS_NTFS</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-mvs">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-mvs">ZipArchive::OPSYS_MVS</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-vse">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-vse">ZipArchive::OPSYS_VSE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-acorn-risc">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-acorn-risc">ZipArchive::OPSYS_ACORN_RISC</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-vfat">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-vfat">ZipArchive::OPSYS_VFAT</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-alternate-mvs">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-alternate-mvs">ZipArchive::OPSYS_ALTERNATE_MVS</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-beos">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-beos">ZipArchive::OPSYS_BEOS</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-tandem">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-tandem">ZipArchive::OPSYS_TANDEM</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-os-4000">
    <strong><code>ZipArchive::OPSYS_OS_400</code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-os-x">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-os-x">ZipArchive::OPSYS_OS_X</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara"/>
   </dd>
  
  
   <dt id="ziparchive.constants.opsys-default">
    <strong><code><a href="zip.constants.php#ziparchive.constants.opsys-default">ZipArchive::OPSYS_DEFAULT</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Since PECL zip 1.12.4
    </span>
   </dd>
  
 </dl>
</div>
<?php manual_footer($setup); ?>