Documented ob_get_length().

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@31168 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Stig Bakken 2000-08-25 03:16:54 +00:00
parent 3333f69a72
commit 35a07d471a
2 changed files with 35 additions and 1 deletions

View file

@ -250,7 +250,7 @@
<title>Description</title>
<funcsynopsis>
<funcprototype>
<funcdef>strin <function>base_convert</function></funcdef>
<funcdef>string <function>base_convert</function></funcdef>
<paramdef>string <parameter>number</parameter></paramdef>
<paramdef>int <parameter>frombase</parameter></paramdef>
<paramdef>int <parameter>tobase</parameter></paramdef>

View file

@ -1090,12 +1090,46 @@ $colon_separated = implode (":", $array);
</para>
<para>
See also <function>ob_start</function>,
<function>ob_get_length</function>, and
<function>ob_end_flush</function>, and
<function>ob_end_clean</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>int <function>ob_get_length</function></funcdef>
<void/>
</funcprototype>
</funcsynopsis>
<para>
This will return the length of the output buffer, or FALSE, if
output buffering isn't active.
</para>
<para>
See also <function>ob_start</function>,
<function>ob_get_contents</function>, and
<function>ob_end_flush</function>, and
<function>ob_end_clean</function>.
</para>
<note>
<para>
This function was added in PHP 4.0.2.
</para>
</note>
</refsect1>
</refentry>
<refentry id="function.ob-end-flush">
<refnamediv>
<refname>ob_end_flush</refname>