reference/outcontrol/flushing-system-buffers.xml
7ad99aeafea66a1562f668aa3cb11dcc9d9cb951
...
...
@@ -1,16 +1,18 @@
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<chapter xml:id="outcontrol.flushing-system-buffers" xmlns="http://docbook.org/ns/docbook">
3
+
<title>Flushing System Buffers</title>
4
+
<para>
5
+
PHP provides two related ways
6
+
to flush (send and discard the contents of) system buffers:
7
+
through calling <function>flush</function>
8
+
and through enabling implicit flushing
9
+
with <function>ob_implicit_flush</function>
10
+
or the <link linkend="ini.implicit-flush">implicit_flush</link>
11
+
&php.ini; setting.
12
+
</para>
13
+

3
14
<section>
4
-
<title>Flushing System Buffers</title>
5
-
<para>
6
-
PHP provides two related ways
7
-
to flush (send and discard the contents of) system buffers:
8
-
through calling <function>flush</function>
9
-
and through enabling implicit flushing
10
-
with <function>ob_implicit_flush</function>
11
-
or the <link linkend="ini.implicit-flush">implicit_flush</link>
12
-
&php.ini; setting.
13
-
</para>
15
+
<title>Output Flushing Behaviour</title>
14
16
<para>
15
17
With implicit flushing disabled, PHP will flush output only
16
18
when <function>flush</function> is called or when the script ends.
17
19