jimw Mon Jan 22 17:56:45 2001 EDT
Modified files:
/phpdoc/en/features error-handling.xml
Log:
add note that parse errors can't be suppressed with @ prefix
Index: phpdoc/en/features/error-handling.xml
diff -u phpdoc/en/features/error-handling.xml:1.13
phpdoc/en/features/error-handling.xml:1.14
--- phpdoc/en/features/error-handling.xml:1.13 Tue Jan 9 04:37:24 2001
+++ phpdoc/en/features/error-handling.xml Mon Jan 22 17:56:45 2001
@@ -146,8 +146,16 @@
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>