[DOC-CVS] [doc-en] master: Updated possible values for display errors INI configurations
[email protected] (narkunan via Jordi Kroon) Sun, 17 May 2026 19:56:48 +0000
| Newsgroups | php.doc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: narkunan (Narkunan)
Committer: Jordi Kroon (jordikroon)
Date: 2026-05-17T21:51:29+02:00
Commit: https://github.com/php/doc-en/commit/8c2b31ab87650423cac6f58a453d702acf2eb1b7
Raw diff: https://github.com/php/doc-en/commit/8c2b31ab87650423cac6f58a453d702acf2eb1b7.diff
Updated possible values for display errors INI configurations
Changed paths:
M reference/errorfunc/ini.xml
Diff:
diff --git a/reference/errorfunc/ini.xml b/reference/errorfunc/ini.xml
index 97ea69fc24ac..16b8cc242155 100644
--- a/reference/errorfunc/ini.xml
+++ b/reference/errorfunc/ini.xml
@@ -208,6 +208,29 @@
This determines whether errors should be printed to the screen
as part of the output or if they should be hidden from the user.
</para>
+ <para>
+ Possible Values:
+ </para>
+ <itemizedlist>
+ <listitem>
+ Off = Do not display any errors
+ </listitem>
+ <listitem>
+ stderr = Display errors to <literal>STDERR</literal> (affects only CGI/CLI binaries!)
+ </listitem>
+ <listitem>
+ On or stdout = Display errors to <literal>STDOUT</literal>
+ </listitem>
+ <listitem>
+ Default Value: On
+ </listitem>
+ <listitem>
+ Development Value: On
+ </listitem>
+ <listitem>
+ Production Value: Off
+ </listitem>
+ </itemizedlist>
<para>
Value <literal>"stderr"</literal> sends the errors to <literal>stderr</literal>
instead of <literal>stdout</literal>.