@@ -305,6 +305,7 @@ serialize_precision = -1
305
305
; open_basedir, if set, limits all file operations to the defined directory
306
306
; and below. This directive makes most sense if used in a per-directory
307
307
; or per-virtualhost web server configuration file.
308
+ ; Note: disables the realpath cache
308
309
; http://php.net/open-basedir
309
310
; open_basedir =
310
311
@@ -337,6 +338,7 @@ disable_classes =
337
338
; Determines the size of the realpath cache to be used by PHP. This value should
338
339
; be increased on systems where PHP opens many files to reflect the quantity of
339
340
; the file operations performed.
341
+ ; Note: if open_basedir is set, the cache is disabled
340
342
; http://php.net/realpath-cache-size
341
343
; realpath_cache_size = 4096k
342
344
@@ -589,7 +591,7 @@ html_errors = On
589
591
; to syslog. Only used when error_log is set to syslog.
590
592
; syslog.ident = php
591
593
592
- ; The syslog facility is used to specify what type of program is logging
594
+ ; The syslog facility is used to specify what type of program is logging
593
595
; the message. Only used when error_log is set to syslog.
594
596
; syslog.facility = user
595
597
@@ -598,9 +600,10 @@ html_errors = On
598
600
; control characters. If your logger accepts everything, then no filtering
599
601
; is needed at all.
600
602
; Allowed values are:
601
- ; ascii (only base ASCII characters)
602
- ; no_ctrl (all characters except control characters)
603
+ ; ascii (all printable ASCII characters and NL )
604
+ ; no-ctrl (all characters except control characters)
603
605
; all (all characters)
606
+ ; http://php.net/syslog.filter
604
607
; syslog.filter = ascii
605
608
606
609
; windows.show_crt_warning
@@ -889,7 +892,7 @@ default_socket_timeout = 60
889
892
; For example:
890
893
;
891
894
; extension=mysqli
892
- ;
895
+ ;
893
896
; When the extension library to load is not located in the default extension
894
897
; directory, You may specify an absolute path to the library file:
895
898
;
@@ -971,8 +974,19 @@ cli_server.color = On
971
974
; intl.use_exceptions = 0
972
975
973
976
[sqlite3]
977
+ ; Directory pointing to SQLite3 extensions
978
+ ; http://php.net/sqlite3.extension-dir
974
979
; sqlite3.extension_dir =
975
980
981
+ ; SQLite defensive mode flag (only available from SQLite 3.26+)
982
+ ; When the defensive flag is enabled, language features that allow ordinary
983
+ ; SQL to deliberately corrupt the database file are disabled. This forbids
984
+ ; writing directly to the schema, shadow tables (eg. FTS data tables), or
985
+ ; the sqlite_dbpage virtual table.
986
+ ; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html
987
+ ; (for older SQLite versions, this flag has no use)
988
+ ; sqlite3.defensive = 1
989
+
976
990
[Pcre]
977
991
; PCRE library backtracking limit.
978
992
; http://php.net/pcre.backtrack-limit
0 commit comments