<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.zlib.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'function.inflate-init.php',
    1 => 'inflate_init',
    2 => 'Initialize an incremental inflate context',
  ),
  'up' => 
  array (
    0 => 'ref.zlib.php',
    1 => 'Zlib Functions',
  ),
  'prev' => 
  array (
    0 => 'function.inflate-get-status.php',
    1 => 'inflate_get_status',
  ),
  'next' => 
  array (
    0 => 'function.ob-gzhandler.php',
    1 => 'ob_gzhandler',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/zlib/functions/inflate_init.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.inflate-init" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">inflate_init</h1>
  <p class="verinfo">(PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">inflate_init</span> &mdash; <span class="dc-title">Initialize an incremental inflate context</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.inflate-init-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>inflate_init</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$encoding</code></span>, <span class="methodparam"><span class="type"><span class="type"><a href="language.types.array.php" class="type array">array</a></span>|<span class="type"><a href="language.types.object.php" class="type object">object</a></span></span> <code class="parameter">$options</code><span class="initializer"> = []</span></span>): <span class="type"><span class="type"><a href="class.inflatecontext.php" class="type InflateContext">InflateContext</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
    Initialize an incremental inflate context with the specified
    <code class="parameter">encoding</code>.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.inflate-init-parameters">
  <h3 class="title">Parameters</h3>
  <dl>
   
    <dt><code class="parameter">encoding</code></dt>
    <dd>
     <p class="para">
      One of the <strong><code><a href="zlib.constants.php#constant.zlib-encoding-raw">ZLIB_ENCODING_<span class="replaceable">*</span></a></code></strong> constants.
     </p>
    </dd>
   
   
    <dt><code class="parameter">options</code></dt>
    <dd>
     <p class="para">
      An associative array which may contain the following elements:
      <dl>
       
        <dt><var class="varname">level</var></dt>
        <dd>
         <p class="para">
          The compression level in range -1..9; defaults to -1.
         </p>
        </dd>
       
       
        <dt><var class="varname">memory</var></dt>
        <dd>
         <p class="para">
          The compression memory level in range 1..9; defaults to 8.
         </p>
        </dd>
       
       
        <dt><var class="varname">window</var></dt>
        <dd>
         <p class="para">
          The zlib window size (logarithmic) in range 8..15; defaults to 15.
         </p>
        </dd>
       
       
        <dt><var class="varname">strategy</var></dt>
        <dd>
         <p class="para">
          One of <strong><code><a href="zlib.constants.php#constant.zlib-filtered">ZLIB_FILTERED</a></code></strong>,
          <strong><code><a href="zlib.constants.php#constant.zlib-huffman-only">ZLIB_HUFFMAN_ONLY</a></code></strong>, <strong><code><a href="zlib.constants.php#constant.zlib-rle">ZLIB_RLE</a></code></strong>,
          <strong><code><a href="zlib.constants.php#constant.zlib-fixed">ZLIB_FIXED</a></code></strong> or
          <strong><code><a href="zlib.constants.php#constant.zlib-default-strategy">ZLIB_DEFAULT_STRATEGY</a></code></strong> (the default).
         </p>
        </dd>
       
       
        <dt><var class="varname">dictionary</var></dt>
        <dd>
         <p class="para">
          A <span class="type"><a href="language.types.string.php" class="type string">string</a></span> or an <span class="type"><a href="language.types.array.php" class="type array">array</a></span> of <span class="type">strings</span>
          of the preset dictionary (default: no preset dictionary).
         </p>
        </dd>
       
      </dl>
     </p>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.inflate-init-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns an inflate context resource (<code class="literal">zlib.inflate</code>) on
   success,  or <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> on failure.
  </p>
 </div>


 <div class="refsect1 errors" id="refsect1-function.inflate-init-errors">
  <h3 class="title">Errors/Exceptions</h3>
  <p class="para">
   If an invalid encoding or option is passed to <code class="parameter">options</code>,
   or the context couldn&#039;t be created, an error of level
   <strong><code><a href="errorfunc.constants.php#constant.e-warning">E_WARNING</a></code></strong> is generated.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.inflate-init-changelog">
  <h3 class="title">Changelog</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Version</th>
      <th>Description</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td>8.0.0</td>
      <td>
       On success, this function returns an <span class="classname"><a href="class.inflatecontext.php" class="classname">InflateContext</a></span> instance now;
       previously, a <span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> was returned.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 notes" id="refsect1-function.inflate-init-notes">
  <h3 class="title">Notes</h3>
  <div class="caution"><strong class="caution">Caution</strong>
   <p class="simpara">
    Unlike <span class="function"><a href="function.gzinflate.php" class="function">gzinflate()</a></span>, incremental inflate contexts do not
    constrain the length of the decoded data, so provide no automatic protection
    against Zip bombs.
   </p>
  </div>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.inflate-init-seealso">
  <h3 class="title">See Also</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.inflate-add.php" class="function" rel="rdfs-seeAlso">inflate_add()</a> - Incrementally inflate encoded data</span></li>
   <li><span class="function"><a href="function.deflate-init.php" class="function" rel="rdfs-seeAlso">deflate_init()</a> - Initialize an incremental deflate context</span></li>
  </ul>
 </div>


</div><?php manual_footer($setup); ?>