<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.outcontrol.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.ob-implicit-flush.php',
    1 => 'ob_implicit_flush',
    2 => 'Schaltet die implizite Ausgabe ein bzw. aus',
  ),
  'up' => 
  array (
    0 => 'ref.outcontrol.php',
    1 => 'Output-Control-Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.ob-get-status.php',
    1 => 'ob_get_status',
  ),
  'next' => 
  array (
    0 => 'function.ob-list-handlers.php',
    1 => 'ob_list_handlers',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/outcontrol/functions/ob-implicit-flush.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.ob-implicit-flush" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ob_implicit_flush</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">ob_implicit_flush</span> &mdash; <span class="dc-title">Schaltet die implizite Ausgabe ein bzw. aus</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.ob-implicit-flush-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>ob_implicit_flush</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$enable</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong></span></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>ob_implicit_flush()</strong></span> schaltet die implizite Ausgabe an
   oder aus. Die implizite Pufferausgabe erzeugt eine Ausgabe nach jedem
   Codeblock, der zu einer Ausgabe führt, sodass keine expliziten Aufrufe von
   <span class="function"><a href="function.flush.php" class="function">flush()</a></span> mehr erforderlich sind.
  </p>
  <blockquote class="note"><p><strong class="note">Hinweis</strong>: 
   <span class="simpara">
    Wenn leere Zeichenketten ausgegeben oder Kopfzeilen gesendet werden, wird
    dies nicht als Ausgabe betrachtet und führt auch nicht zu einer
    Ausgabeoperation.
   </span>
  </p></blockquote>
  <blockquote class="note"><p><strong class="note">Hinweis</strong>: 
   <span class="simpara">
    Diese Funktion hat keine Auswirkungen benutzerdefinierte Ausgabe-Handler,
    also z. B. solche, die durch <span class="function"><a href="function.ob-start.php" class="function">ob_start()</a></span> oder
    <span class="function"><a href="function.output-add-rewrite-var.php" class="function">output_add_rewrite_var()</a></span> gestartet werden.
   </span>
  </p></blockquote>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.ob-implicit-flush-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">enable</code></dt>
     <dd>
      <p class="para">
       <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> schaltet die implizite Ausgabe ein, <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> schaltet sie aus.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.ob-implicit-flush-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Es wird kein Wert zurückgegeben.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.ob-implicit-flush-changelog">
  <h3 class="title">Changelog</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Version</th>
      <th>Beschreibung</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td>8.0.0</td>
      <td>
       <code class="parameter">enable</code> erwartet nun einen <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span>-Wert;
       vorher wurde ein <span class="type"><a href="language.types.integer.php" class="type int">int</a></span> erwartet.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 seealso" id="refsect1-function.ob-implicit-flush-seealso">
  <h3 class="title">Siehe auch</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.flush.php" class="function" rel="rdfs-seeAlso">flush()</a> - Leert (sendet) den System-Ausgabepuffer</span></li>
    <li><span class="function"><a href="function.ob-start.php" class="function" rel="rdfs-seeAlso">ob_start()</a> - Ausgabepufferung aktivieren</span></li>
    <li><span class="function"><a href="function.ob-end-flush.php" class="function" rel="rdfs-seeAlso">ob_end_flush()</a> - Leert (sendet) den R&uuml;ckgabewert des aktiven Ausgabe-Handlers und
   deaktiviert den aktiven Ausgabepuffer</span></li>
   </ul>
  </p>
 </div>


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