mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
fixed bug #14873, missing mode parameter for ob_gzhandler; spelling errors
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@67644 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
ecc7120903
commit
163bd89bad
1 changed files with 11 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.24 $ -->
|
||||
<!-- $Revision: 1.25 $ -->
|
||||
<reference id="ref.outcontrol">
|
||||
<title>Output Control Functions</title>
|
||||
<titleabbrev>Output Control</titleabbrev>
|
||||
|
@ -9,7 +9,7 @@
|
|||
The Output Control functions allow you to control when output is
|
||||
sent from the script. This can be useful in several different
|
||||
situations, especially if you need to send headers to the browser
|
||||
after your script has began outputing data. The Output Control
|
||||
after your script has began outputting data. The Output Control
|
||||
functions do not affect headers sent using
|
||||
<function>header</function> or <function>setcookie</function>,
|
||||
only functions such as <function>echo</function> and data between
|
||||
|
@ -256,7 +256,7 @@ ob_end_flush();
|
|||
</funcsynopsis>
|
||||
<para>
|
||||
This will return the length of the contents in the output buffer
|
||||
or &false;, if output buffering isnt't active.
|
||||
or &false;, if output buffering isn't active.
|
||||
</para>
|
||||
<para>
|
||||
See also <function>ob_start</function> and
|
||||
|
@ -303,8 +303,16 @@ ob_end_flush();
|
|||
<funcprototype>
|
||||
<funcdef>string <function>ob_gzhandler</function></funcdef>
|
||||
<paramdef>string <parameter>buffer</parameter></paramdef>
|
||||
<paramdef>int
|
||||
<parameter><optional>mode</optional></parameter>
|
||||
</paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<note>
|
||||
<para>
|
||||
<parameter>mode</parameter> was added in PHP 4.0.5.
|
||||
</para>
|
||||
</note>
|
||||
<para>
|
||||
<function>ob_gzhandler</function> is intended to be used as a
|
||||
callback function for <function>ob_start</function> to help
|
||||
|
|
Loading…
Reference in a new issue