<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/refs.basic.php.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'book.outcontrol.php',
    1 => 'Ausgabekontrolle',
    2 => 'Ausgabepufferung',
  ),
  'up' => 
  array (
    0 => 'refs.basic.php.php',
    1 => 'Das Verhalten von PHP beeinflussen',
  ),
  'prev' => 
  array (
    0 => 'function.opcache-reset.php',
    1 => 'opcache_reset',
  ),
  'next' => 
  array (
    0 => 'outcontrol.setup.php',
    1 => 'Installation/Konfiguration',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/outcontrol/book.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/book.outcontrol.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="book.outcontrol" class="book">
 
 <h1 class="title">Ausgabepufferung</h1>
 

 <div id="intro.outcontrol" class="preface">
  <h1 class="title">Einführung</h1>
  <p class="para">
   Mit den Funktionen zur Ausgabesteuerung kann die Ausgabe eines Skripts
   gesteuert werden. Dies kann in verschiedenen Situationen ganz nützlich
   sein, besonders wenn Header an den Browser gesendet werden müssen, nachdem
   das Skript bereits etwas ausgegeben hat. Die Ausgabesteuerungsfunktionen
   gelten nicht für Header, die mit <span class="function"><a href="function.header.php" class="function">header()</a></span> oder
   <span class="function"><a href="function.setcookie.php" class="function">setcookie()</a></span> gesendet wurden, sondern nur für Daten, die
   mit <span class="function"><a href="function.echo.php" class="function">echo</a></span> gesendet wurden oder für Daten zwischen
   PHP-Codeblöcken.
  </p>
 </div>

 







 





 



 



 



 







 









<ul class="chunklist chunklist_book"><li><a href="outcontrol.setup.php">Installation/Konfiguration</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="outcontrol.configuration.php">Laufzeit-Konfiguration</a></li></ul></li><li><a href="outcontrol.constants.php">Vordefinierte Konstanten</a></li><li><a href="outcontrol.output-buffering.php">Output Buffering</a></li><li><a href="outcontrol.flushing-system-buffers.php">Flushing System Buffers</a></li><li><a href="outcontrol.user-level-output-buffers.php">User-Level Output Buffers</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="outcontrol.what-output-is-buffered.php">What Output Is Buffered?</a></li><li><a href="outcontrol.nesting-output-buffers.php">Nesting Output Buffers</a></li><li><a href="outcontrol.buffer-size.php">Buffer Size</a></li><li><a href="outcontrol.operations-on-buffers.php">Operations Allowed On Buffers</a></li><li><a href="outcontrol.output-handlers.php">Output Handlers</a></li><li><a href="outcontrol.working-with-output-handlers.php">Working With Output Handlers</a></li><li><a href="outcontrol.flags-passed-to-output-handlers.php">Flags Passed To Output Handlers</a></li><li><a href="outcontrol.output-handler-return-values.php">Output Handler Return Values</a></li></ul></li><li><a href="outcontrol.examples.php">Beispiele</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="outcontrol.examples.basic.php">Einsatzgrundlagen</a></li><li><a href="outcontrol.examples.rewrite.php">Verwendung des URL-Rewriters</a></li></ul></li><li><a href="ref.outcontrol.php">Output-Control-Funktionen</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="function.flush.php">flush</a> — Leert (sendet) den System-Ausgabepuffer</li><li><a href="function.ob-clean.php">ob_clean</a> — L&ouml;scht den Inhalt des aktiven Ausgabepuffer</li><li><a href="function.ob-end-clean.php">ob_end_clean</a> — L&ouml;scht den Inhalt des aktiven Ausgabepuffers und deaktiviert ihn</li><li><a href="function.ob-end-flush.php">ob_end_flush</a> — Leert (sendet) den R&uuml;ckgabewert des aktiven Ausgabe-Handlers und
   deaktiviert den aktiven Ausgabepuffer</li><li><a href="function.ob-flush.php">ob_flush</a> — Leert (sendet) den R&uuml;ckgabewert des aktiven Ausgabe-Handlers</li><li><a href="function.ob-get-clean.php">ob_get_clean</a> — Get the contents of the active output buffer and turn it off</li><li><a href="function.ob-get-contents.php">ob_get_contents</a> — Liefert den Inhalt des Ausgabepuffers</li><li><a href="function.ob-get-flush.php">ob_get_flush</a> — Flush (send) the return value of the active output handler,
   return the contents of the active output buffer and turn it off</li><li><a href="function.ob-get-length.php">ob_get_length</a> — Return the length of the output buffer</li><li><a href="function.ob-get-level.php">ob_get_level</a> — Anzahl der aktiven Ausgabepuffer</li><li><a href="function.ob-get-status.php">ob_get_status</a> — Get status of output buffers</li><li><a href="function.ob-implicit-flush.php">ob_implicit_flush</a> — Schaltet die implizite Ausgabe ein bzw. aus</li><li><a href="function.ob-list-handlers.php">ob_list_handlers</a> — List all output handlers in use</li><li><a href="function.ob-start.php">ob_start</a> — Ausgabepufferung aktivieren</li><li><a href="function.output-add-rewrite-var.php">output_add_rewrite_var</a> — F&uuml;gt Werte zum URL-Rewriter hinzu</li><li><a href="function.output-reset-rewrite-vars.php">output_reset_rewrite_vars</a> — Reset URL rewriter values</li></ul></li></ul></div><?php manual_footer($setup); ?>