diff options
author | Jakub Zelenka <bukka@php.net> | 2018-07-22 16:29:35 +0100 |
---|---|---|
committer | Jakub Zelenka <bukka@php.net> | 2018-07-22 16:29:35 +0100 |
commit | c85504386d16f943cc79263187710a05cefea265 (patch) | |
tree | 4cb56844bd763ddce1a725b6c71f02e2bd82d99a /php.ini-development | |
parent | 2010c02e5c3c70880a53cb0403ce696708f4d590 (diff) | |
download | php-git-c85504386d16f943cc79263187710a05cefea265.tar.gz |
Rename none syslog.filter to all and update ini description
Diffstat (limited to 'php.ini-development')
-rw-r--r-- | php.ini-development | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/php.ini-development b/php.ini-development index d7aac12a16..af2cf1092f 100644 --- a/php.ini-development +++ b/php.ini-development @@ -517,14 +517,6 @@ report_memleaks = On ; This setting is on by default. ;report_zend_debug = 0 -; Set this to disable filtering control characters (the default). -; Some loggers only accept NVT-ASCII, others accept anything that's not -; control characters. If your logger accepts everything, then no filtering -; is needed at all. -; Values are: ascii (space-tilde), no_ctrl (all characters space and above), -; and none (all characters) -;syslog.filter = ascii - ; Store the last error/warning message in $php_errormsg (boolean). ; This directive is DEPRECATED. ; Default Value: Off @@ -594,6 +586,16 @@ html_errors = On ; the message. Only used when error_log is set to syslog. ;syslog.facility = user +; Set this to disable filtering control characters (the default). +; Some loggers only accept NVT-ASCII, others accept anything that's not +; control characters. If your logger accepts everything, then no filtering +; is needed at all. +; Allowed values are: +; ascii (only base ASCII characters) +; no_ctrl (all characters except control characters) +; all (all characters) +;syslog.filter = ascii + ;windows.show_crt_warning ; Default value: 0 ; Development value: 0 |