<?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 => 'uk',
  ),
  'this' => 
  array (
    0 => 'phar.stopbuffering.php',
    1 => 'Phar::stopBuffering',
    2 => 'Stop buffering write requests to the Phar archive, and save changes to disk',
  ),
  'up' => 
  array (
    0 => 'class.phar.php',
    1 => 'Phar',
  ),
  'prev' => 
  array (
    0 => 'phar.startbuffering.php',
    1 => 'Phar::startBuffering',
  ),
  'next' => 
  array (
    0 => 'phar.unlinkarchive.php',
    1 => 'Phar::unlinkArchive',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/phar/Phar/stopBuffering.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="phar.stopbuffering" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">Phar::stopBuffering</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.0, PHP 7, PHP 8, PECL phar &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">Phar::stopBuffering</span> &mdash; <span class="dc-title">Stop buffering write requests to the Phar archive, and save changes to disk</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-phar.stopbuffering-description">
  <h3 class="title">Опис</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>Phar::stopBuffering</strong></span>(): <span class="type"><a href="language.types.void.php" class="type void">void</a></span></div>


  <p class="para rdfs-comment">
   <span class="function"><strong>Phar::stopBuffering()</strong></span> is used in conjunction with the
   <span class="function"><a href="phar.startbuffering.php" class="function">Phar::startBuffering()</a></span> method.  <span class="function"><a href="phar.startbuffering.php" class="function">Phar::startBuffering()</a></span>
   can provide a significant performance boost when creating or modifying a
   Phar archive with a large number of files.  Ordinarily, every time a file
   within a Phar archive is created or modified in any way, the entire Phar
   archive will be recreated with the changes.  In this way, the archive will
   be up-to-date with the activity performed on it.
  </p>
  <p class="para">
   However, this can be unnecessary when simply creating a new Phar archive,
   when it would make more sense to write the entire archive out at once.
   Similarly, it is often necessary to make a series of changes and to ensure
   that they all are possible before making any changes on disk, similar to the
   relational database concept of transactions.  The
   <span class="function"><a href="phar.startbuffering.php" class="function">Phar::startBuffering()</a></span>/<span class="function"><strong>Phar::stopBuffering()</strong></span> pair
   of methods is provided for this purpose.
  </p>
  <p class="para">
   Phar write buffering is per-archive, buffering active for the
   <code class="literal">foo.phar</code> Phar archive does not affect changes
   to the <code class="literal">bar.phar</code> Phar archive.
  </p>

 </div>


 <div class="refsect1 parameters" id="refsect1-phar.stopbuffering-parameters">
  <h3 class="title">Параметри</h3>
  <p class="para">У цієї функції немає
параметрів.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-phar.stopbuffering-returnvalues">
  <h3 class="title">Значення, що повертаються</h3>
  <p class="para">
   Не повертає значень.
  </p>
 </div>


 <div class="refsect1 errors" id="refsect1-phar.stopbuffering-errors">
  <h3 class="title">Помилки/виключення</h3>
  <p class="para">
   <span class="classname"><a href="class.pharexception.php" class="classname">PharException</a></span> is thrown if any problems are encountered
   flushing changes to disk.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-phar.stopbuffering-examples">
  <h3 class="title">Приклади</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Приклад #1 A <span class="function"><strong>Phar::stopBuffering()</strong></span> example</strong></p>
    <div class="example-contents"><p>
    </p></div>
    <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: #0000BB">dirname</span><span style="color: #007700">(</span><span style="color: #0000BB">__FILE__</span><span style="color: #007700">) . </span><span style="color: #DD0000">'/brandnewphar.phar'</span><span style="color: #007700">, </span><span style="color: #0000BB">0</span><span style="color: #007700">, </span><span style="color: #DD0000">'brandnewphar.phar'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$p</span><span style="color: #007700">[</span><span style="color: #DD0000">'file1.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">-&gt;</span><span style="color: #0000BB">startBuffering</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$p</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getStub</span><span style="color: #007700">());<br /></span><span style="color: #0000BB">$p</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">setStub</span><span style="color: #007700">(</span><span style="color: #DD0000">"&lt;?php<br />function __autoload(\$class)<br />{<br />    include 'phar://brandnewphar.phar/' . str_replace('_', '/', \$class) . '.php';<br />}<br />Phar::mapPhar('brandnewphar.phar');<br />include 'phar://brandnewphar.phar/startup.php';<br />__HALT_COMPILER();"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$p</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">stopBuffering</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$p</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getStub</span><span style="color: #007700">());<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>Поданий вище приклад
виведе:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">string(24) &quot;&lt;?php __HALT_COMPILER();&quot;
string(195) &quot;&lt;?php
function __autoload($class)
{
    include &#039;phar://&#039; . str_replace(&#039;_&#039;, &#039;/&#039;, $class);
}
Phar::mapPhar(&#039;brandnewphar.phar&#039;);
include &#039;phar://brandnewphar.phar/startup.php&#039;;
__HALT_COMPILER();&quot;</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-phar.stopbuffering-seealso">
  <h3 class="title">Прогляньте також</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="phar.startbuffering.php" class="function" rel="rdfs-seeAlso">Phar::startBuffering()</a> - Start buffering Phar write operations, do not modify the Phar object on disk</span></li>
    <li><span class="function"><a href="phar.isbuffering.php" class="function" rel="rdfs-seeAlso">Phar::isBuffering()</a> - Used to determine whether Phar write operations are being buffered, or are flushing directly to disk</span></li>
   </ul>
  </p>
 </div>


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