From 9f8ab100278cc66577a6ed570f08d3b3947b64f9 Mon Sep 17 00:00:00 2001 From: Markus Fischer Date: Fri, 10 May 2002 13:26:33 +0000 Subject: [PATCH] - Document 'implicit_flush'. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@81687 c90b9560-bf6c-de11-be94-00142212c4b1 --- chapters/config.xml | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/chapters/config.xml b/chapters/config.xml index 4a32439d24..f54e80d251 100644 --- a/chapters/config.xml +++ b/chapters/config.xml @@ -1,5 +1,5 @@ - + Configuration @@ -451,6 +451,29 @@ linkend="ini.register-globals">register_globals. + + + + implicit_flush + boolean + + + + &false; by default. Changing this to &true; tells PHP to tell the + output layer to flush itself automatically after every output block. + This is equivalent to calling the PHP function + flush after each and every call to + print or echo and each and + every HTML block. + + + When using PHP within an web environment, turning + this option on has serious performance implications and is generally + recommended for debugging purposes only. This value defaults to + &true; when operating under the CLI SAPI. + + +