mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
- Document which error types can't be handled.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@85199 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
2b2f92f366
commit
6d6e6e0232
1 changed files with 10 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- splitted from ./en/functions/errorfunc.xml, last change in rev 1.1 -->
|
||||
<refentry id="function.set-error-handler">
|
||||
<refnamediv>
|
||||
|
@ -31,6 +31,15 @@
|
|||
error occurred (an array that points to the active symbol table at the
|
||||
point the error occurred).
|
||||
</para>
|
||||
<note>
|
||||
<para>
|
||||
The following error types cannot be handled with a user defined
|
||||
function: <constant>E_ERROR</constant>, <constant>E_PARSE</constant>,
|
||||
<constant>E_CORE_ERROR</constant>, <constant>E_CORE_WARNING</constant>,
|
||||
<constant>E_COMPILE_ERROR</constant> and
|
||||
<constant>E_COMPILE_WARNING</constant>.
|
||||
</para>
|
||||
</note>
|
||||
<para>
|
||||
The example below shows the handling of
|
||||
internal exceptions by triggering errors and handling them with a user
|
||||
|
|
Loading…
Reference in a new issue