mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
E_RECOVERABLE_ERRROR->E_RECOVERABLE_ERROR bug#39028
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@221079 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
ba198c7693
commit
ffc56c954b
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<section id="errorfunc.examples">
|
||||
&reftitle.examples;
|
||||
<para>
|
||||
|
@ -38,7 +38,7 @@ function userErrorHandler($errno, $errmsg, $filename, $linenum, $vars)
|
|||
E_USER_WARNING => 'User Warning',
|
||||
E_USER_NOTICE => 'User Notice',
|
||||
E_STRICT => 'Runtime Notice',
|
||||
E_RECOVERABLE_ERRROR => 'Catchable Fatal Error'
|
||||
E_RECOVERABLE_ERROR => 'Catchable Fatal Error'
|
||||
);
|
||||
// set of errors for which a var trace will be saved
|
||||
$user_errors = array(E_USER_ERROR, E_USER_WARNING, E_USER_NOTICE);
|
||||
|
|
Loading…
Reference in a new issue