mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 17:08:54 +00:00
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:
parent
398e813e3d
commit
eed46693d6
1 changed files with 28 additions and 3 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue