diff --git a/reference/errorfunc/ini.xml b/reference/errorfunc/ini.xml index c10661d09894..5bef48dcf7d6 100644 --- a/reference/errorfunc/ini.xml +++ b/reference/errorfunc/ini.xml @@ -208,16 +208,34 @@ This determines whether errors should be printed to the screen as part of the output or if they should be hidden from the user. + + Possible Values: + - Value "stderr" sends the errors to stderr - instead of stdout. + The accepted values are: + + + Off: do not display any errors. + + + On or stdout: display errors to stdout. This is the default. + + + stderr: display errors to stderr. Only effective for the CLI,phpdbgandCGI SAPIs. + + - + This is a feature to support your development and should never be used on production systems (e.g. systems connected to the internet). - + + + The bundled php.ini-development sets this to + On; php.ini-production sets + it to Off. + Although display_errors may be set at runtime (with ini_set),