mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
added a note to flush() describing the buffering outside of PHP
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@35503 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
e10ffe0b0b
commit
c32aec004d
1 changed files with 19 additions and 0 deletions
|
@ -62,6 +62,25 @@ ob_end_flush();
|
|||
using (CGI, a web server, etc.) This effectively tries to push
|
||||
all the output so far to the user's browser.
|
||||
</simpara>
|
||||
<note>
|
||||
<para>
|
||||
<fuction>flush()</function> has no effect on the buffering
|
||||
scheme of your webserver or the browser on the client
|
||||
side.
|
||||
</para>
|
||||
<para>
|
||||
Several servers, especially on Win32, will still buffer
|
||||
the output from your script until it terminates before
|
||||
transmitting the results to the browser.
|
||||
</para>
|
||||
<para>
|
||||
Even the browser may buffer its input before displaying it.
|
||||
Netscape, for example, buffers text until it receives an
|
||||
end-of-line or the beginning of a tag, and it won't render
|
||||
tables until the </table> tag of the outermost table is
|
||||
seen.
|
||||
</para>
|
||||
</note>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
|
|
Loading…
Reference in a new issue