<?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 => 'fr',
  ),
  'this' => 
  array (
    0 => 'function.ob-implicit-flush.php',
    1 => 'ob_implicit_flush',
    2 => 'Active/d&eacute;sactive l\'envoi implicite',
  ),
  'up' => 
  array (
    0 => 'ref.outcontrol.php',
    1 => 'Fonctions de bufferisation de sortie',
  ),
  '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' => 'fr',
    '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">Active/désactive l&#039;envoi implicite</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.ob-implicit-flush-description">
  <h3 class="title">Description</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> active/désactive l&#039;envoi implicite.
   La mise en mémoire tampon implicite entraînera une opération de vidage après chaque bloc
   de code produisant une sortie, de sorte que des appels explicites à <span class="function"><a href="function.flush.php" class="function">flush()</a></span>
   ne seront plus nécessaires.
  </p>
  <blockquote class="note"><p><strong class="note">Note</strong>: 
   <span class="simpara">
    Afficher des chaînes vides ou envoyer des en-têtes n&#039;est pas considéré comme une sortie
    et ne déclenchera pas d&#039;opération de vidage.
   </span>
  </p></blockquote>
  <blockquote class="note"><p><strong class="note">Note</strong>: 
   <span class="simpara">
    Cette fonction n&#039;a aucun effet sur les gestionnaires de sortie de niveau utilisateur,
    tels que ceux démarrés par <span class="function"><a href="function.ob-start.php" class="function">ob_start()</a></span>
    ou <span class="function"><a href="function.output-add-rewrite-var.php" class="function">output_add_rewrite_var()</a></span>.
   </span>
  </p></blockquote>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.ob-implicit-flush-parameters">
  <h3 class="title">Liste de paramètres</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> pour activer, <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> sinon.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.ob-implicit-flush-returnvalues">
  <h3 class="title">Valeurs de retour</h3>
  <p class="para">
   Aucune valeur n&#039;est retournée.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.ob-implicit-flush-changelog">
  <h3 class="title">Historique</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>
       <code class="parameter">enable</code> attend une valeur <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> désormais ;
       auparavant, un <span class="type"><a href="language.types.integer.php" class="type int">int</a></span> était attendu.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 seealso" id="refsect1-function.ob-implicit-flush-seealso">
  <h3 class="title">Voir aussi</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.flush.php" class="function" rel="rdfs-seeAlso">flush()</a> - Vide les tampons de sortie du syst&egrave;me</span></li>
    <li><span class="function"><a href="function.ob-start.php" class="function" rel="rdfs-seeAlso">ob_start()</a> - Enclenche la temporisation de sortie</span></li>
    <li><span class="function"><a href="function.ob-end-flush.php" class="function" rel="rdfs-seeAlso">ob_end_flush()</a> - Vide (envoie) la valeur de retour du gestionnaire de sortie actif
   et d&eacute;sactive le tampon de sortie actif</span></li>
   </ul>
  </p>
 </div>


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