diff --git a/appendices/phpdevel.xml b/appendices/phpdevel.xml index 3212d003ca..11d0420e4a 100644 --- a/appendices/phpdevel.xml +++ b/appendices/phpdevel.xml @@ -1,5 +1,5 @@ - + Extending PHP 3 @@ -882,6 +882,14 @@ php3_list_delete(resource_id->value.lval); generate this type of error. + + + E_ALL + + All of the above. Using this error_reporting level will show + all error types. + + diff --git a/functions/errorfunc.xml b/functions/errorfunc.xml index 46890e1711..2c2a0166de 100644 --- a/functions/errorfunc.xml +++ b/functions/errorfunc.xml @@ -1,5 +1,5 @@ - + Error Handling and Logging Functions Errors and Logging @@ -237,6 +237,12 @@ error_reporting (E_ALL ^ E_NOTICE); // The same in both PHP 3 and 4 E_USER_NOTICE + + 2047 + + E_ALL + + @@ -246,24 +252,18 @@ error_reporting (E_ALL ^ E_NOTICE); // The same in both PHP 3 and 4 <function>error_reporting</function> examples