features/connection-handling.xml
dc0f955be2a10b707ae06f7da69f52fab24df3d1
...
...
@@ -4,20 +4,21 @@
4
4
<title>Connection handling</title>
5
5

6
6
<para>
7
-
Internally in PHP a connection status is maintained. There are 3
7
+
Internally in PHP a connection status is maintained. There are 4
8
8
possible states:
9
9
<itemizedlist>
10
10
<listitem><simpara>0 - NORMAL</simpara></listitem>
11
11
<listitem><simpara>1 - ABORTED</simpara></listitem>
12
12
<listitem><simpara>2 - TIMEOUT</simpara></listitem>
13
+
<listitem><simpara>3 - ABORTED and TIMEOUT</simpara></listitem>
13
14
</itemizedlist>
14
15
</para>
15
16

16
17
<simpara>
17
-
When a PHP script is running normally the NORMAL state, is active.
18
-
If the remote client disconnects the ABORTED state flag is
19
-
turned on. A remote client disconnect is usually caused by the
20
-
user hitting his STOP button. If the PHP-imposed time limit (see
18
+
When a PHP script is running normally, the NORMAL state is active.
19
+
If the remote client disconnects, the ABORTED state flag is
20
+
turned on. A remote client disconnect is usually caused by
21
+
users hitting their STOP button. If the PHP-imposed time limit (see
21
22
<function>set_time_limit</function>) is hit, the TIMEOUT state flag
22
23
is turned on.</simpara>
23
24

24
25