Source of: /manual/en/ref.outcontrol.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.outcontrol.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'ref.outcontrol.php',
1 => 'Output Control Functions',
),
'up' =>
array (
0 => 'book.outcontrol.php',
1 => 'Output Buffering Control',
),
'prev' =>
array (
0 => 'outcontrol.examples.basic.php',
1 => 'Examples',
),
'next' =>
array (
0 => 'function.flush.php',
1 => 'flush',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div>
<h1 class="title">Output Control Functions</h1>
<div class="partintro">
<h1 class="title">See Also</h1>
<p class="para">
See also <a href="function.header.php" class="function">header()</a> and
<a href="function.setcookie.php" class="function">setcookie()</a>.
</p>
</div>
<h2>Table of Contents</h2><ul class="chunklist chunklist_reference"><li><a href="function.flush.php">flush</a> — Flush the output buffer</li><li><a href="function.ob-clean.php">ob_clean</a> — Clean (erase) the output buffer</li><li><a href="function.ob-end-clean.php">ob_end_clean</a> — Clean (erase) the output buffer and turn off output buffering</li><li><a href="function.ob-end-flush.php">ob_end_flush</a> — Flush (send) the output buffer and turn off output buffering</li><li><a href="function.ob-flush.php">ob_flush</a> — Flush (send) the output buffer</li><li><a href="function.ob-get-clean.php">ob_get_clean</a> — Get current buffer contents and delete current output buffer</li><li><a href="function.ob-get-contents.php">ob_get_contents</a> — Return the contents of the output buffer</li><li><a href="function.ob-get-flush.php">ob_get_flush</a> — Flush the output buffer, return it as a string and turn off output buffering</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> — Return the nesting level of the output buffering mechanism</li><li><a href="function.ob-get-status.php">ob_get_status</a> — Get status of output buffers</li><li><a href="function.ob-gzhandler.php">ob_gzhandler</a> — ob_start callback function to gzip output buffer</li><li><a href="function.ob-implicit-flush.php">ob_implicit_flush</a> — Turn implicit flush on/off</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> — Turn on output buffering</li><li><a href="function.output-add-rewrite-var.php">output_add_rewrite_var</a> — Add URL rewriter values</li><li><a href="function.output-reset-rewrite-vars.php">output_reset_rewrite_vars</a> — Reset URL rewriter values</li></ul>
</div>
<?php manual_footer(); ?>