reference/outcontrol/book.xml
7610e990293c87168d026ad078d8272e643e2c23
...
...
@@ -1,9 +1,8 @@
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<!-- $Revision$ -->
3
-
<!-- Purpose: basic.php -->
4
-
<!-- Membership: core -->
5
3

6
4
<book xml:id="book.outcontrol" xmlns="http://docbook.org/ns/docbook">
5
+
<?phpdoc extension-membership="core" ?>
7
6
<title>Output Buffering Control</title>
8
7
<titleabbrev>Output Control</titleabbrev>
9
8

...
...
@@ -13,25 +12,19 @@
13
12
The Output Control functions allow you to control when output is
14
13
sent from the script. This can be useful in several different
15
14
situations, especially if you need to send headers to the browser
16
-
after your script has began outputting data. The Output Control
15
+
after your script has begun outputting data. The Output Control
17
16
functions do not affect headers sent using
18
17
<function>header</function> or <function>setcookie</function>,
19
18
only functions such as <function>echo</function> and data between
20
19
blocks of PHP code.
21
20
</para>
22
-
<note>
23
-
<para>
24
-
When upgrading from PHP 4.1.x (and 4.2.x) to 4.3.x due to a bug in
25
-
earlier versions you must ensure that
26
-
<literal>implict_flush</literal> is <literal>OFF</literal> in
27
-
your &php.ini;, otherwise any output with
28
-
<function>ob_start</function> will not be hidden from output.
29
-
</para>
30
-
</note>
31
21
</preface>
32
22

33
23
&reference.outcontrol.setup;
34
24
&reference.outcontrol.constants;
25
+
&reference.outcontrol.output-buffering;
26
+
&reference.outcontrol.flushing-system-buffers;
27
+
&reference.outcontrol.user-level-output-buffers;
35
28
&reference.outcontrol.examples;
36
29
&reference.outcontrol.reference;
37
30

38
31