reference/outcontrol/functions/ob-implicit-flush.xml
1cdb6d04aa0d5c15c73337d0dca75d67e0f2e48e
...
...
@@ -14,10 +14,23 @@
14
14
</methodsynopsis>
15
15
<para>
16
16
<function>ob_implicit_flush</function> will turn implicit flushing on or
17
-
off. Implicit flushing will result in a flush operation after every output
18
-
call, so that explicit calls to <function>flush</function> will no longer
19
-
be needed.
17
+
off. Implicit flushing will result in a flush operation after every block of
18
+
code resulting in output, so that explicit calls to <function>flush</function>
19
+
will no longer be needed.
20
20
</para>
21
+
<note>
22
+
<simpara>
23
+
Printing empty strings or sending headers is not considered output
24
+
and will not result in a flush operation.
25
+
</simpara>
26
+
</note>
27
+
<note>
28
+
<simpara>
29
+
This function does not have any effect on user level output handlers
30
+
such as those started by <function>ob_start</function>
31
+
or <function>output_add_rewrite_var</function>.
32
+
</simpara>
33
+
</note>
21
34
</refsect1>
22
35

23
36
<refsect1 role="parameters">
24
37