Source of: /manual/en/function.ob-flush.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = 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 => 'en',
),
'this' =>
array (
0 => 'function.ob-flush.php',
1 => 'ob_flush',
),
'up' =>
array (
0 => 'ref.outcontrol.php',
1 => 'Output Control Functions',
),
'prev' =>
array (
0 => 'function.ob-end-flush.php',
1 => 'ob_end_flush',
),
'next' =>
array (
0 => 'function.ob-get-clean.php',
1 => 'ob_get_clean',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="function.ob-flush" class="refentry">
<div class="refnamediv">
<h1 class="refname">ob_flush</h1>
<p class="verinfo">(PHP 4 >= 4.2.0, PHP 5)</p><p class="refpurpose"><span class="refname">ob_flush</span> — <span class="dc-title">Flush (send) the output buffer</span></p>
</div>
<a name="function.ob-flush.description"></a><div class="refsect1 description">
<h3 class="title">Description</h3>
<div class="methodsynopsis dc-description">
<span class="type"><span class="type void">void</span></span> <span class="methodname"><b>ob_flush</b></span>
( <span class="methodparam">void</span>
)</div>
<p class="para rdfs-comment">
This function will send the contents of the output buffer (if any). If you
want to further process the buffer's contents you have to call
<a href="function.ob-get-contents.php" class="function">ob_get_contents()</a> before <b>ob_flush()</b>
as the buffer contents are discarded after <b>ob_flush()</b>
is called.
</p>
<p class="para">
This function does not destroy the output buffer like
<a href="function.ob-end-flush.php" class="function">ob_end_flush()</a> does.
</p>
</div>
<a name="function.ob-flush.returnvalues"></a><div class="refsect1 returnvalues">
<h3 class="title">Return Values</h3>
<p class="para">
No value is returned.
</p>
</div>
<a name="function.ob-flush.seealso"></a><div class="refsect1 seealso">
<h3 class="title">See Also</h3>
<p class="para">
</p><ul class="simplelist">
<li class="member"><a href="function.ob-get-contents.php" class="function" rel="rdfs-seeAlso">ob_get_contents()</a> - Return the contents of the output buffer</li>
<li class="member"><a href="function.ob-clean.php" class="function" rel="rdfs-seeAlso">ob_clean()</a> - Clean (erase) the output buffer</li>
<li class="member"><a href="function.ob-end-flush.php" class="function" rel="rdfs-seeAlso">ob_end_flush()</a> - Flush (send) the output buffer and turn off output buffering</li>
<li class="member"><a href="function.ob-end-clean.php" class="function" rel="rdfs-seeAlso">ob_end_clean()</a> - Clean (erase) the output buffer and turn off output buffering</li>
</ul><p>
</p>
</div>
</div><?php manual_footer(); ?>