& => &

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@40353 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Torben Wilson 2001-01-30 00:27:22 +00:00
parent d23a6ad87b
commit c92462ed49

View file

@ -81,10 +81,10 @@
style warnings that are categorized by the symbolic constant
<literal>E_NOTICE</literal>. Then you'll put the following into
your <filename>php.ini</filename>: <literal>error_reporting =
E_ALL & ~ ( E_NOTICE )</literal>. If you want to suppress
E_ALL &amp; ~ ( E_NOTICE )</literal>. If you want to suppress
warnings too you add up the appropriate constant within the
braces using the binary or operator '|':
<literal>error_reporting= E_ALL & ~ ( E_NOTICE | E_WARNING
<literal>error_reporting= E_ALL &amp; ~ ( E_NOTICE | E_WARNING
)</literal>.
</para>
<warning>