diff --git a/functions/outcontrol.xml b/functions/outcontrol.xml index 5f20620dec..2d3e805036 100644 --- a/functions/outcontrol.xml +++ b/functions/outcontrol.xml @@ -1,5 +1,5 @@ - + Output Control Functions Output Control @@ -61,28 +61,34 @@ ob_end_flush(); Flushes the output buffers of PHP and whatever backend PHP is - using (CGI, a web server, etc.) This effectively tries to push + using (CGI, a web server, etc). This effectively tries to push all the output so far to the user's browser. - - - flush has no effect on the buffering - scheme of your webserver or the browser on the client - side. - - - Several servers, especially on Win32, will still buffer - the output from your script until it terminates before - transmitting the results to the browser. - - - 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. - - + + + flush has no effect on the buffering + scheme of your webserver or the browser on the client + side. + + + Several servers, especially on Win32, will still buffer + the output from your script until it terminates before + transmitting the results to the browser. + + + 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. + + + Some versions of Microsoft Internet Explorer will only start to display + the page after they have received 256 bytes of output, so you may need to + send extra whitespace before flushing to get those browsers to display the + page. + +