Added note for php_value, php_admin_value limitation.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@88588 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Yasuo Ohgaki 2002-07-13 09:04:11 +00:00
parent d4f3867650
commit 99346c6afc

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.63 $ -->
<!-- $Revision: 1.64 $ -->
<chapter id="configuration">
<title>Configuration</title>
@ -142,6 +142,20 @@ include_path = ".;c:\php\lib"
]]>
</programlisting>
</example>
<note>
<para>
Some ini directives have special initilization handler. Changing
these ini values from Apache configuration file may result in
unexpected behavior. For example, <systemitem
role="directive">error_reporting</systemitem> has special
handler translate error level constant expression to integer
value, changing value using <literal>E_ALL</literal>,
<literal>E_NOTICE</literal> will not work for <systemitem
role="directive">error_reporting</systemitem>. Users must
specify integer value for <systemitem
role="directive">error_reporting</systemitem> to make it work.
</para>
</note>
</para>
<simpara>