<?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 => 'en',
  ),
  'this' => 
  array (
    0 => 'function.ob-get-length.php',
    1 => 'ob_get_length',
    2 => 'Return the length of the output buffer',
  ),
  'up' => 
  array (
    0 => 'ref.outcontrol.php',
    1 => 'Output Control Functions',
  ),
  'prev' => 
  array (
    0 => 'function.ob-get-flush.php',
    1 => 'ob_get_flush',
  ),
  'next' => 
  array (
    0 => 'function.ob-get-level.php',
    1 => 'ob_get_level',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/outcontrol/functions/ob-get-length.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.ob-get-length" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ob_get_length</h1>
  <p class="verinfo">(PHP 4 &gt;= 4.0.2, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">ob_get_length</span> &mdash; <span class="dc-title">Return the length of the output buffer</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.ob-get-length-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>ob_get_length</strong></span>(): <span class="type"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
   This will return the length of the contents in the output buffer, in bytes.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.ob-get-length-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">This function has no parameters.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.ob-get-length-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns the length of the output buffer contents, in bytes, or <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> if no
   buffering is active.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.ob-get-length-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Example #1 A simple <span class="function"><strong>ob_get_length()</strong></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br />ob_start</span><span style="color: #007700">();<br /><br />echo </span><span style="color: #DD0000">"Hello "</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">$len1 </span><span style="color: #007700">= </span><span style="color: #0000BB">ob_get_length</span><span style="color: #007700">();<br /><br />echo </span><span style="color: #DD0000">"World"</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">$len2 </span><span style="color: #007700">= </span><span style="color: #0000BB">ob_get_length</span><span style="color: #007700">();<br /><br /></span><span style="color: #0000BB">ob_end_clean</span><span style="color: #007700">();<br /><br />echo </span><span style="color: #0000BB">$len1 </span><span style="color: #007700">. </span><span style="color: #DD0000">", " </span><span style="color: #007700">. </span><span style="color: #0000BB">$len2</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>The above example will output:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">6, 11</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.ob-get-length-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.ob-start.php" class="function" rel="rdfs-seeAlso">ob_start()</a> - Turn on output buffering</span></li>
    <li><span class="function"><a href="function.ob-get-contents.php" class="function" rel="rdfs-seeAlso">ob_get_contents()</a> - Return the contents of the output buffer</span></li>
   </ul>
  </p>
 </div>


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