-
Notifications
You must be signed in to change notification settings - Fork 855
Expand file tree
/
Copy pathini.xml
More file actions
73 lines (70 loc) · 2.06 KB
/
ini.xml
File metadata and controls
73 lines (70 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<section xml:id="sqlite3.configuration" xmlns="http://docbook.org/ns/docbook">
&reftitle.runtime;
&extension.runtime;
<para>
<table>
<title>SQLite3 &ConfigureOptions;</title>
<tgroup cols="4">
<thead>
<row>
<entry>&Name;</entry>
<entry>&Default;</entry>
<entry>&Changeable;</entry>
<entry>&Changelog;</entry>
</row>
</thead>
<tbody xml:id="sqlite3.configuration.list">
<row>
<entry><link linkend="ini.sqlite3.extension-dir">sqlite3.extension_dir</link></entry>
<entry>""</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.sqlite3.defensive">sqlite3.defensive</link></entry>
<entry>1</entry>
<entry><constant>INI_USER</constant></entry>
<entry>
Available as of PHP 7.2.17 and 7.3.4 for libsqlite ≥ 3.26.0.
Prior to PHP 8.2.0 this setting was changeable only as
<constant>INI_SYSTEM</constant>.
</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
&ini.descriptions.title;
<para>
<variablelist>
<varlistentry xml:id="ini.sqlite3.extension-dir">
<term>
<parameter>sqlite3.extension_dir</parameter>
<type>string</type>
</term>
<listitem>
<para>
Path to the directory where the loadable extensions for SQLite reside.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="ini.sqlite3.defensive">
<term>
<parameter>sqlite3.defensive</parameter>
<type>bool</type>
</term>
<listitem>
<para>
When the defensive flag is enabled, language features that allow ordinary
SQL to deliberately corrupt the database file are disabled. This forbids
writing directly to the schema, shadow tables (eg. FTS data tables), or
the sqlite_dbpage virtual table.
This &php.ini; setting is only effective for libsqlite ≥ 3.26.0.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</section>