add note that parse errors can't be suppressed with @ prefix

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@40012 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
jim winstead 2001-01-23 01:56:45 +00:00
parent 87014819d0
commit f53a59c0f0

View file

@ -146,9 +146,17 @@
an expression and the <link
linkend="ini.track-errors">track_errors</link> feature is enabled,
you can find the error message in the global variable
$php_errormsg.
<literal>$php_errormsg</literal>.
</para>
<note>
<para>
The <link linkend="language.operators.errorcontrol">@
error-control operator</link> prefix will not disable messages
that are the result of parse errors.
</para>
</note>
<warning>
<para>
Currently the <link linkend="language.operators.errorcontrol">@