mfischer                Fri May 10 09:26:34 2002 EDT

  Modified files:              
    /phpdoc/en/chapters config.xml 
  Log:
  - Document 'implicit_flush'.
  
  
Index: phpdoc/en/chapters/config.xml
diff -u phpdoc/en/chapters/config.xml:1.51 phpdoc/en/chapters/config.xml:1.52
--- phpdoc/en/chapters/config.xml:1.51  Mon May  6 06:46:22 2002
+++ phpdoc/en/chapters/config.xml       Fri May 10 09:26:33 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.51 $ -->
+<!-- $Revision: 1.52 $ -->
  <chapter id="configuration">
   <title>Configuration</title>
 
@@ -448,6 +448,29 @@
      soon as they try to output something after a client has aborted
      their connection.
          <function>ignore_user_abort</function>.
+        </para>
+       </listitem>
+      </varlistentry>
+
+      <varlistentry id="ini.implicit-flush">
+       <term>
+        <parameter>implicit_flush</parameter>
+        <type>boolean</type>
+       </term>
+       <listitem>
+        <para>
+         &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 <literal>PHP</literal> function
+         <function>flush</function> after each and every call to
+         <function>print</function> or <function>echo</function> and each and
+         every <literal>HTML</literal> block.
+        </para>
+        <para>
+         When using <literal>PHP</literal> 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 <literal>CLI SAPI</literal>.
         </para>
        </listitem>
       </varlistentry>


Reply via email to