added docs for ob_get_length, modifed the "See Also" para for ob_get_contents.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@31509 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Daniel Beckham 2000-08-29 21:10:19 +00:00
parent 398e813e3d
commit eed46693d6

View file

@ -120,9 +120,34 @@ ob_end_flush();
output buffering isn't active.
</para>
<para>
See also <function>ob_start</function>,
<function>ob_end_flush</function>, and
<function>ob_end_clean</function>.
See also <function>ob_start</function> and
<function>ob_get_length</function>.
</para>
</refsect1>
</refentry>
<refentry id="function.ob-get-length">
<refnamediv>
<refname>ob_get_length</refname>
<refpurpose>
Return the length of the output buffer
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<funcsynopsis>
<funcprototype>
<funcdef>string <function>ob_get_length</function></funcdef>
<void/>
</funcprototype>
</funcsynopsis>
<para>
This will return the length of the contents in the output buffer
or FALSE, if output buffering isnt't active.
</para>
<para>
See also <function>ob_start</function> and
<function>ob_get_contents</function>.
</para>
</refsect1>
</refentry>