Pull in the latest php updates to php.ini
This commit is contained in:
parent
6fd69fdc05
commit
ad83f3b7b5
1 changed files with 14 additions and 2 deletions
16
php/php.ini
16
php/php.ini
|
@ -600,9 +600,10 @@ html_errors = On
|
||||||
; control characters. If your logger accepts everything, then no filtering
|
; control characters. If your logger accepts everything, then no filtering
|
||||||
; is needed at all.
|
; is needed at all.
|
||||||
; Allowed values are:
|
; Allowed values are:
|
||||||
; ascii (only base ASCII characters)
|
; ascii (all printable ASCII characters and NL)
|
||||||
; no_ctrl (all characters except control characters)
|
; no-ctrl (all characters except control characters)
|
||||||
; all (all characters)
|
; all (all characters)
|
||||||
|
; http://php.net/syslog.filter
|
||||||
;syslog.filter = ascii
|
;syslog.filter = ascii
|
||||||
|
|
||||||
;windows.show_crt_warning
|
;windows.show_crt_warning
|
||||||
|
@ -1008,8 +1009,19 @@ cli_server.color = On
|
||||||
;intl.use_exceptions = 0
|
;intl.use_exceptions = 0
|
||||||
|
|
||||||
[sqlite3]
|
[sqlite3]
|
||||||
|
; Directory pointing to SQLite3 extensions
|
||||||
|
; http://php.net/sqlite3.extension-dir
|
||||||
;sqlite3.extension_dir =
|
;sqlite3.extension_dir =
|
||||||
|
|
||||||
|
; SQLite defensive mode flag (only available from SQLite 3.26+)
|
||||||
|
; 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.
|
||||||
|
; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html
|
||||||
|
; (for older SQLite versions, this flag has no use)
|
||||||
|
sqlite3.defensive = 1
|
||||||
|
|
||||||
[Pcre]
|
[Pcre]
|
||||||
; PCRE library backtracking limit.
|
; PCRE library backtracking limit.
|
||||||
; http://php.net/pcre.backtrack-limit
|
; http://php.net/pcre.backtrack-limit
|
||||||
|
|
Loading…
Reference in a new issue