From 8c5f0ae709f06b59aee8230b8777eb701d1a89d1 Mon Sep 17 00:00:00 2001 From: Egon Schmid Date: Sun, 25 Jun 2000 11:44:47 +0000 Subject: [PATCH] More stuff from Stefan Livieratos. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@27015 c90b9560-bf6c-de11-be94-00142212c4b1 --- appendices/phpdevel.xml | 88 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 87 insertions(+), 1 deletion(-) diff --git a/appendices/phpdevel.xml b/appendices/phpdevel.xml index 249d199b4d..ce044f3b04 100644 --- a/appendices/phpdevel.xml +++ b/appendices/phpdevel.xml @@ -805,6 +805,92 @@ php3_list_delete(resource_id->value.lval); + + E_COMPILE_ERROR + + This is like an E_ERROR, except it is generated by the Zend Scripting + Engine. Functions should not generate this type of error. + + + + + E_COMPILE_WARNING + + This is like an E_WARNING, except it is generated by the Zend Scripting + Engine. Functions should not generate this type of error. + + + + + E_USER_ERROR + + This is like an E_ERROR, except it is generated in PHP code by using + the PHP function trigger_error. Functions should + not generate this type of error. + + + + + E_USER_WARNING + + This is like an E_WARNING, except it is generated by using the PHP + function trigger_error. Functions should not + generate this type of error. + + + + + E_USER_NOTICE + + This is like an E_NOTICE, except it is generated by using the PHP + function trigger_error. Functions should not + generate this type of error. + + + + + E_COMPILE_ERROR + + This is like an E_ERROR, except it is generated by the Zend Scripting + Engine. Functions should not generate this type of error. + + + + + E_COMPILE_WARNING + + This is like an E_WARNING, except it is generated by the Zend Scripting + Engine. Functions should not generate this type of error. + + + + + E_USER_ERROR + + This is like an E_ERROR, except it is generated in PHP code by using + the PHP function trigger_error. Functions should + not generate this type of error. + + + + + E_USER_WARNING + + This is like an E_WARNING, except it is generated by using the PHP + function trigger_error. Functions should not + generate this type of error. + + + + + E_USER_NOTICE + + This is like an E_NOTICE, except it is generated by using the PHP + function trigger_error. Functions should not + generate this type of error. + + +