diff --git a/reference/errorfunc/ini.xml b/reference/errorfunc/ini.xml index d3da408d29..f9716536fa 100644 --- a/reference/errorfunc/ini.xml +++ b/reference/errorfunc/ini.xml @@ -1,5 +1,5 @@ - +
&reftitle.runtime; &extension.runtime; @@ -164,6 +164,18 @@ deprecated functions. + + PHP Constants outside of PHP + + Using PHP Constants outside of PHP, like in httpd.conf, + will have no useful meaning so in such cases the integer values + are required. And since error levels will be added over time, the maximum + value (for E_ALL) will likely change. So in place of + E_ALL consider using a larger value to cover all bit + fields from now and well into the future, a numeric value like + 2147483647. + + In PHP 3, the default setting is (E_ERROR | E_WARNING | E_PARSE),