. Fixed bug #76509 (Inherited static properties can be desynchronized from
their parent by ref). (Nikita)
. Fixed bug #76439 (Changed behaviour in unclosed HereDoc). (Nikita, tpunt)
+ . Added syslog.facility and syslog.ident INI entries for customizing syslog
+ logging. (Philip Prindeville)
- DOM:
. Fixed bug #76285 (DOMDocument::formatOutput attribute sometimes ignored).
. This INI directive has been removed. The value has already been ignored
since PHP 5.3.0.
+- syslog.facility
+ - New INI to set syslog facility which specifies what type of program is
+ logging the message. It is used only when error_log is set to syslog.
+
+- syslog.ident
+ . New INI to set syslog ident string which is prepended to every message. It
+ is used only when error_log is set syslog.
+
========================================
12. Windows Support
========================================
;error_log = php_errors.log
; Log errors to syslog (Event Log on Windows).
;error_log = syslog
-; the next two lines ony happen if the previous line sending errors to syslog
-; has been set as well.
+
+; The syslog ident is a string which is prepended to every message logged
+; to syslog. Only used when error_log is set to syslog.
;syslog.ident = php
+
+; The syslog facility is used to specify what type of program is logging
+; the message. Only used when error_log is set to syslog.
;syslog.facility = user
;windows.show_crt_warning
;error_log = syslog
; Log errors to syslog (Event Log on Windows).
;error_log = syslog
-; the next two lines ony happen if the previous line sending errors to syslog
-; has been set as well.
+
+; The syslog ident is a string which is prepended to every message logged
+; to syslog. Only used when error_log is set to syslog.
;syslog.ident = php
+
+; The syslog facility is used to specify what type of program is logging
+; the message. Only used when error_log is set to syslog.
;syslog.facility = user
;windows.show_crt_warning