reference/mysqli/ini.xml
d4d5216e7a965ca194f6b1c9dee84cecab2674e5
...
...
@@ -19,73 +19,73 @@
19
19
<row>
20
20
<entry><link linkend="ini.mysqli.allow-local-infile">mysqli.allow_local_infile</link></entry>
21
21
<entry>"0"</entry>
22
-
<entry>PHP_INI_SYSTEM</entry>
22
+
<entry><constant>INI_SYSTEM</constant></entry>
23
23
<entry>Before PHP 7.2.16 and 7.3.3 the default was "1".</entry>
24
24
</row>
25
25
<row>
26
26
<entry><link linkend="ini.mysqli.local-infile-directory">mysqli.local_infile_directory</link></entry>
27
27
<entry></entry>
28
-
<entry>PHP_INI_SYSTEM</entry>
29
-
<entry></entry>
28
+
<entry><constant>INI_SYSTEM</constant></entry>
29
+
<entry>Available as of PHP 8.1.0.</entry>
30
30
</row>
31
31
<row>
32
32
<entry><link linkend="ini.mysqli.allow-persistent">mysqli.allow_persistent</link></entry>
33
33
<entry>"1"</entry>
34
-
<entry>PHP_INI_SYSTEM</entry>
34
+
<entry><constant>INI_SYSTEM</constant></entry>
35
35
<entry></entry>
36
36
</row>
37
37
<row>
38
38
<entry><link linkend="ini.mysqli.max-persistent">mysqli.max_persistent</link></entry>
39
39
<entry>"-1"</entry>
40
-
<entry>PHP_INI_SYSTEM</entry>
40
+
<entry><constant>INI_SYSTEM</constant></entry>
41
41
<entry></entry>
42
42
</row>
43
43
<row>
44
44
<entry><link linkend="ini.mysqli.max-links">mysqli.max_links</link></entry>
45
45
<entry>"-1"</entry>
46
-
<entry>PHP_INI_SYSTEM</entry>
46
+
<entry><constant>INI_SYSTEM</constant></entry>
47
47
<entry></entry>
48
48
</row>
49
49
<row>
50
50
<entry><link linkend="ini.mysqli.default-port">mysqli.default_port</link></entry>
51
51
<entry>"3306"</entry>
52
-
<entry>PHP_INI_ALL</entry>
52
+
<entry><constant>INI_ALL</constant></entry>
53
53
<entry></entry>
54
54
</row>
55
55
<row>
56
56
<entry><link linkend="ini.mysqli.default-socket">mysqli.default_socket</link></entry>
57
57
<entry>NULL</entry>
58
-
<entry>PHP_INI_ALL</entry>
58
+
<entry><constant>INI_ALL</constant></entry>
59
59
<entry></entry>
60
60
</row>
61
61
<row>
62
62
<entry><link linkend="ini.mysqli.default-host">mysqli.default_host</link></entry>
63
63
<entry>NULL</entry>
64
-
<entry>PHP_INI_ALL</entry>
64
+
<entry><constant>INI_ALL</constant></entry>
65
65
<entry></entry>
66
66
</row>
67
67
<row>
68
68
<entry><link linkend="ini.mysqli.default-user">mysqli.default_user</link></entry>
69
69
<entry>NULL</entry>
70
-
<entry>PHP_INI_ALL</entry>
70
+
<entry><constant>INI_ALL</constant></entry>
71
71
<entry></entry>
72
72
</row>
73
73
<row>
74
74
<entry><link linkend="ini.mysqli.default-pw">mysqli.default_pw</link></entry>
75
75
<entry>NULL</entry>
76
-
<entry>PHP_INI_ALL</entry>
76
+
<entry><constant>INI_ALL</constant></entry>
77
77
<entry></entry>
78
78
</row>
79
79
<row>
80
80
<entry><link linkend="ini.mysqli.reconnect">mysqli.reconnect</link></entry>
81
81
<entry>"0"</entry>
82
-
<entry>PHP_INI_SYSTEM</entry>
83
-
<entry></entry>
82
+
<entry><constant>INI_SYSTEM</constant></entry>
83
+
<entry>Removed as of PHP 8.2.0</entry>
84
84
</row>
85
85
<row>
86
86
<entry><link linkend="ini.mysqli.rollback-on-cached-plink">mysqli.rollback_on_cached_plink</link></entry>
87
87
<entry>"0"</entry>
88
-
<entry>PHP_INI_SYSTEM</entry>
88
+
<entry><constant>INI_SYSTEM</constant></entry>
89
89
<entry></entry>
90
90
</row>
91
91
</tbody>
...
...
@@ -93,7 +93,7 @@
93
93
</table>
94
94
</para>
95
95
<para>
96
-
For further details and definitions of the preceding PHP_INI_* constants, see
96
+
For further details and definitions of the preceding INI_* constants, see
97
97
the chapter on <link linkend="configuration.changes">configuration
98
98
changes</link>.
99
99
</para>
...
...
@@ -244,7 +244,9 @@
244
244
Automatically reconnect if the connection was lost.
245
245
</para>
246
246
<note>
247
-
<simpara>This &php.ini; setting is ignored by the mysqlnd driver.</simpara>
247
+
<simpara>This &php.ini; setting had been ignored by the mysqlnd driver, and was removed
248
+
as of PHP 8.2.0.
249
+
</simpara>
248
250
</note>
249
251
</listitem>
250
252
</varlistentry>
...
...
@@ -294,4 +296,3 @@ vim600: syn=xml fen fdm=syntax fdl=2 si
294
296
vim: et tw=78 syn=sgml
295
297
vi: ts=1 sw=1
296
298
-->
297
-

298
299