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. + + +