<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.phar.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'phar.compress.php',
    1 => 'Phar::compress',
    2 => 'Compresses the entire Phar archive using Gzip or Bzip2 compression',
  ),
  'up' => 
  array (
    0 => 'class.phar.php',
    1 => 'Phar',
  ),
  'prev' => 
  array (
    0 => 'phar.canwrite.php',
    1 => 'Phar::canWrite',
  ),
  'next' => 
  array (
    0 => 'phar.compressfiles.php',
    1 => 'Phar::compressFiles',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/phar/Phar/compress.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="phar.compress" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">Phar::compress</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.0, PHP 7, PHP 8, PECL phar &gt;= 2.0.0)</p><p class="refpurpose"><span class="refname">Phar::compress</span> &mdash; <span class="dc-title">Compresses the entire Phar archive using Gzip or Bzip2 compression</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-phar.compress-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>Phar::compress</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$compression</code></span>, <span class="methodparam"><span class="type"><span class="type"><a href="language.types.null.php" class="type null">?</a></span><span class="type"><a href="language.types.string.php" class="type string">string</a></span></span> <code class="parameter">$extension</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></span></span>): <span class="type"><span class="type"><a href="language.types.null.php" class="type null">?</a></span><span class="type"><a href="class.phar.php" class="type Phar">Phar</a></span></span></div>

 <blockquote class="note"><p><strong class="note">Bilginize</strong>: 
<p class="para"><span class="classname"><a href="class.phar.php" class="classname">Phar</a></span> nesneleri ile çalışmak için, bu yöntem
<code class="literal">phar.readonly</code> <var class="filename">php.ini</var> yönergesine <code class="literal">0</code>
atanmış olmasını gerektirir. Aksi takdirde bir
<span class="classname"><a href="class.pharexception.php" class="classname">PharException</a></span> istisnası oluşur.</p></p></blockquote>

  <p class="para">
   For tar-based and phar-based phar archives, this method compresses the entire archive using
   gzip compression or bzip2 compression.  The resulting file can be processed with the
   gunzip command/bunzip command, or accessed directly and transparently with the Phar
   extension.
  </p>
  <p class="para">
   For Zip-based phar archives, this method fails with an exception.
   The <a href="ref.zlib.php" class="link">zlib</a> extension must be enabled to compress
   with gzip compression, the <a href="ref.bzip2.php" class="link">bzip2</a> extension must be
   enabled in order to compress with bzip2 compression.
   As with all functionality that modifies the contents of a phar, the
   <a href="phar.configuration.php#ini.phar.readonly" class="link">phar.readonly</a> INI variable must be off
   in order to succeed.
  </p>
  <p class="para">
   In addition, this method automatically renames the archive, appending <code class="literal">.gz</code>,
   <code class="literal">.bz2</code> or removing the extension if passed <code class="literal">Phar::NONE</code> to
   remove compression.  Alternatively, a file extension may be specified with the second
   parameter.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-phar.compress-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">compression</code></dt>
     <dd>
      <p class="para">
       Compression must be one of <code class="literal">Phar::GZ</code>,
       <code class="literal">Phar::BZ2</code> to add compression, or <code class="literal">Phar::NONE</code>
       to remove compression.
      </p>
     </dd>
    
    
     <dt><code class="parameter">extension</code></dt>
     <dd>
      <p class="para">
       By default, the extension is <code class="literal">.phar.gz</code>
       or <code class="literal">.phar.bz2</code> for compressing phar archives, and
       <code class="literal">.phar.tar.gz</code> or <code class="literal">.phar.tar.bz2</code> for
       compressing tar archives.  For decompressing, the default file extensions
       are <code class="literal">.phar</code> and <code class="literal">.phar.tar</code>.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-phar.compress-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   Returns a <span class="classname"><a href="class.phar.php" class="classname">Phar</a></span> object, or <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong> on failure.
  </p>
 </div>


 <div class="refsect1 errors" id="refsect1-phar.compress-errors">
  <h3 class="title">Hatalar/İstisnalar</h3>
  <p class="para">
   Throws <span class="classname"><a href="class.badmethodcallexception.php" class="classname">BadMethodCallException</a></span> if
   the <a href="phar.configuration.php#ini.phar.readonly" class="link">phar.readonly</a>
   INI variable is on, the <a href="ref.zlib.php" class="link">zlib</a>
   extension is not available, or the <a href="ref.bzip2.php" class="link">bzip2</a> extension
   is not enabled.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-phar.compress-changelog">
  <h3 class="title">Sürüm Bilgisi</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Sürüm: </th>
      <th>Açıklama</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td>8.0.0</td>
      <td>
       <code class="parameter">extension</code> is now nullable.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 examples" id="refsect1-phar.compress-examples">
  <h3 class="title">Örnekler</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Örnek 1 A <span class="function"><strong>Phar::compress()</strong></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$p </span><span style="color: #007700">= new </span><span style="color: #0000BB">Phar</span><span style="color: #007700">(</span><span style="color: #DD0000">'/path/to/my.phar'</span><span style="color: #007700">, </span><span style="color: #0000BB">0</span><span style="color: #007700">, </span><span style="color: #DD0000">'my.phar'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$p</span><span style="color: #007700">[</span><span style="color: #DD0000">'myfile.txt'</span><span style="color: #007700">] = </span><span style="color: #DD0000">'hi'</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$p</span><span style="color: #007700">[</span><span style="color: #DD0000">'myfile2.txt'</span><span style="color: #007700">] = </span><span style="color: #DD0000">'hi'</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$p1 </span><span style="color: #007700">= </span><span style="color: #0000BB">$p</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">compress</span><span style="color: #007700">(</span><span style="color: #0000BB">Phar</span><span style="color: #007700">::</span><span style="color: #0000BB">GZ</span><span style="color: #007700">); </span><span style="color: #FF8000">// copies to /path/to/my.phar.gz<br /></span><span style="color: #0000BB">$p2 </span><span style="color: #007700">= </span><span style="color: #0000BB">$p</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">compress</span><span style="color: #007700">(</span><span style="color: #0000BB">Phar</span><span style="color: #007700">::</span><span style="color: #0000BB">BZ2</span><span style="color: #007700">); </span><span style="color: #FF8000">// copies to /path/to/my.phar.bz2<br /></span><span style="color: #0000BB">$p3 </span><span style="color: #007700">= </span><span style="color: #0000BB">$p2</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">compress</span><span style="color: #007700">(</span><span style="color: #0000BB">Phar</span><span style="color: #007700">::</span><span style="color: #0000BB">NONE</span><span style="color: #007700">); </span><span style="color: #FF8000">// exception: /path/to/my.phar already exists<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-phar.compress-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="pharfileinfo.getcompressedsize.php" class="function" rel="rdfs-seeAlso">PharFileInfo::getCompressedSize()</a> - Returns the actual size of the file (with compression) inside the Phar archive</span></li>
    <li><span class="function"><a href="pharfileinfo.iscompressed.php" class="function" rel="rdfs-seeAlso">PharFileInfo::isCompressed()</a> - Returns whether the entry is compressed</span></li>
    <li><span class="function"><a href="pharfileinfo.compress.php" class="function" rel="rdfs-seeAlso">PharFileInfo::compress()</a> - Compresses the current Phar entry with either zlib or bzip2 compression</span></li>
    <li><span class="function"><a href="pharfileinfo.decompress.php" class="function" rel="rdfs-seeAlso">PharFileInfo::decompress()</a> - Decompresses the current Phar entry within the phar</span></li>
    <li><span class="function"><a href="phardata.compress.php" class="function" rel="rdfs-seeAlso">PharData::compress()</a> - Compresses the entire tar/zip archive using Gzip or Bzip2 compression</span></li>
    <li><span class="function"><a href="phar.cancompress.php" class="function" rel="rdfs-seeAlso">Phar::canCompress()</a> - Returns whether phar extension supports compression using either zlib or bzip2</span></li>
    <li><span class="function"><a href="phar.iscompressed.php" class="function" rel="rdfs-seeAlso">Phar::isCompressed()</a> - Returns Phar::GZ or PHAR::BZ2 if the entire phar archive is compressed (.tar.gz/tar.bz and so on)</span></li>
    <li><span class="function"><a href="phar.decompress.php" class="function" rel="rdfs-seeAlso">Phar::decompress()</a> - Decompresses the entire Phar archive</span></li>
    <li><span class="function"><a href="phar.getsupportedcompression.php" class="function" rel="rdfs-seeAlso">Phar::getSupportedCompression()</a> - Return array of supported compression algorithms</span></li>
    <li><span class="function"><a href="phar.compressfiles.php" class="function" rel="rdfs-seeAlso">Phar::compressFiles()</a> - Compresses all files in the current Phar archive</span></li>
    <li><span class="function"><a href="phar.decompressfiles.php" class="function" rel="rdfs-seeAlso">Phar::decompressFiles()</a> - Decompresses all files in the current Phar archive</span></li>
   </ul>
  </p>
 </div>


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