Full list of PHP Error Messages

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Full list of PHP Error Messages

Post by RobertGonzalez »

I am working on a project and was wondering if anyone has come across a full listing of the standard error messages PHP throws for all error reporting levels (like undefined index, parse error, undefined offset, etc)? I thought I had ran across one once, but cannot seem to find anything anywhere about them. So I turn to you, the good community of PHPDN members, and ask if you have seen my list of PHP error messages anywhere?
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

Searching through the source of 5.1.6 produces

Code: Select all

E_COMPILE_ERROR	"%s function %s::%s() cannot be declared private", method_type, CG(active_class_entry)->name, function_name->u.constant.value.str.val
E_COMPILE_ERROR	"%s function %s::%s() cannot contain body", method_type, CG(active_class_entry)->name, function_name->u.constant.value.str.val
E_COMPILE_ERROR	"%s", message
E_COMPILE_ERROR	"%s() must take exactly 1 argument", ZEND_AUTOLOAD_FUNC_NAME
E_COMPILE_ERROR	"__HALT_COMPILER() can only be used from the outermost scope"
E_COMPILE_ERROR	"Access level to %s::$%s must be %s (as in class %s)%s", ce->name, hash_key->arKey, zend_visibility_string(parent_info->flags), parent_ce->name, (parent_info->flags&ZEND_ACC_PUBLIC) ? "" : " or weaker"
E_COMPILE_ERROR	"Access level to %s::%s() must be %s (as in class %s)%s", ZEND_FN_SCOPE_NAME(child), child->common.function_name, zend_visibility_string(parent_flags), ZEND_FN_SCOPE_NAME(parent), (parent_flags&ZEND_ACC_PUBLIC) ? "" : " or weaker"
E_COMPILE_ERROR	"Access type for interface method %s::%s() must be omitted", CG(active_class_entry)->name, function_name->u.constant.value.str.val
E_COMPILE_ERROR	"Arrays are not allowed in class constants"
E_COMPILE_ERROR	"Can't inherit abstract function %s::%s() (previously declared abstract in %s
E_COMPILE_ERROR	"Can't use function return value in write context"
E_COMPILE_ERROR	"Can't use method return value in write context"
E_COMPILE_ERROR	"Cannot call __clone() method on objects - use 'clone $obj' instead"
E_COMPILE_ERROR	"Cannot create references to elements of a temporary array expression"
E_COMPILE_ERROR	"Cannot declare property %s::$%s final, the final modifier is allowed only for methods",
E_COMPILE_ERROR	"Cannot inherit previously-inherited constant %s from interface %s", hash_key->arKey, iface->name
E_COMPILE_ERROR	"Cannot make non abstract method %s::%s() abstract in class %s", ZEND_FN_SCOPE_NAME(parent), child->common.function_name, ZEND_FN_SCOPE_NAME(child)
E_COMPILE_ERROR	"Cannot make non static method %s::%s() static in class %s", ZEND_FN_SCOPE_NAME(parent), child->common.function_name, ZEND_FN_SCOPE_NAME(child)
E_COMPILE_ERROR	"Cannot make static method %s::%s() non static in class %s", ZEND_FN_SCOPE_NAME(parent), child->common.function_name, ZEND_FN_SCOPE_NAME(child)
E_COMPILE_ERROR	"Cannot override final method %s::%s()", ZEND_FN_SCOPE_NAME(parent), child->common.function_name
E_COMPILE_ERROR	"Cannot re-assign $this"
E_COMPILE_ERROR	"Cannot redeclare %s::$%s", CG(active_class_entry)->name, var_name->u.constant.value.str.val
E_COMPILE_ERROR	"Cannot redeclare %s::%s()", CG(active_class_entry)->name, name
E_COMPILE_ERROR	"Cannot redeclare class %s", opline->op2.u.constant.value.str.val
E_COMPILE_ERROR	"Cannot redefine class constant %s::%s", CG(active_class_entry)->name, var_name->u.constant.value.str.val
E_COMPILE_ERROR	"Cannot use '%s' as class name as it is reserved", class_name->u.constant.value.str.val
E_COMPILE_ERROR	"Cannot use 'parent' as class name as it is reserved"
E_COMPILE_ERROR	"Cannot use 'parent' as interface name as it is reserved"
E_COMPILE_ERROR	"Cannot use 'self' as class name as it is reserved"
E_COMPILE_ERROR	"Cannot use 'self' as interface name as it is reserved"
E_COMPILE_ERROR	"Cannot use [] for reading"
E_COMPILE_ERROR	"Cannot use [] for unsetting"
E_COMPILE_ERROR	"Cannot use constants as encoding"
E_COMPILE_ERROR	"Cannot use the final modifier on an abstract class member"
E_COMPILE_ERROR	"Class %s cannot extend from interface %s", ce->name, parent_ce->name
E_COMPILE_ERROR	"Class %s may not inherit from final class (%s)", ce->name, parent_ce->name
E_COMPILE_ERROR	"Class declarations may not be nested"
E_COMPILE_ERROR	"Clone method %s::%s() cannot be static", ce->name, ce->clone->common.function_name
E_COMPILE_ERROR	"Constructor %s::%s() cannot be static", ce->name, ce->constructor->common.function_name
E_COMPILE_ERROR	"Declaration of %s::%s() must be compatible with that of %s::%s()", ZEND_FN_SCOPE_NAME(child), child->common.function_name, ZEND_FN_SCOPE_NAME(child->common.prototype), child->common.prototype->common.function_name
E_COMPILE_ERROR	"Default value for parameters with a class type hint can only be NULL"
E_COMPILE_ERROR	"Default value for parameters with array type hint can only be an array or NULL"
E_COMPILE_ERROR	"Destructor %s::%s() cannot be static", ce->name, ce->destructor->common.function_name
E_COMPILE_ERROR	"Interface %s may not inherit from class (%s)", ce->name, parent_ce->name
E_COMPILE_ERROR	"Interfaces may not include member variables"
E_COMPILE_ERROR	"Internal compiler error.  Please report!"
E_COMPILE_ERROR	"Internal Zend error - Missing class information for %s", opline->op1.u.constant.value.str.val
E_COMPILE_ERROR	"Invalid binding type"
E_COMPILE_ERROR	"Key element cannot be a reference"
E_COMPILE_ERROR	"Multiple access type modifiers are not allowed"
E_COMPILE_ERROR	"Non-abstract method %s::%s() must contain body", CG(active_class_entry)->name, function_name->u.constant.value.str.val
E_COMPILE_ERROR	"Only variables can be passed by reference"
E_COMPILE_ERROR	"Properties cannot be declared abstract"
E_COMPILE_ERROR	"use: Not yet supported. Please use include_once() or require_once()");  zval_dtor(&$2.u.constant
E_COMPILE_ERROR	"use: Not yet supported. Please use include_once() or require_once()");  zval_dtor(&(yyvsp[(2) - (3)]).u.constant
E_COMPILE_ERROR "Cannot change initial value of property static protected %s::$%s in class %s", 
E_COMPILE_ERROR "Cannot redeclare %s%s::$%s as %s%s::$%s",
E_COMPILE_WARNING	"Unexpected character in input:  '%c' (ASCII=%d) state=%d", yytext[0], yytext[0], YYSTATE
E_COMPILE_WARNING	"Unsupported encoding [%s]", val->u.constant.value.str.val
E_COMPILE_WARNING	"Unterminated comment starting line %d", CG(comment_start_line)
E_CORE_ERROR	"%s::%s(
E_CORE_ERROR	"Class %s could not implement interface %s", ce->name, iface->name
E_CORE_ERROR	"Class %s must implement interface %s as part of either %s or %s",
E_CORE_ERROR	"Couldn't execute method %s%s%s", obj_ce ? obj_ce->name : "", obj_ce ? "::" : "", function_name
E_CORE_ERROR	"Couldn't find implementation for method %s%s%s", obj_ce ? obj_ce->name : "", obj_ce ? "::" : "", function_name
E_CORE_ERROR	"Internal zval's can't be arrays, objects or resources"
E_CORE_ERROR	"Property %s of class %s cannot be read", name, class_name
E_CORE_ERROR	"Property %s of class %s cannot be updated", name, class_name
E_CORE_ERROR	"Trying to clone uncloneable object of class %s", Z_OBJCE_P(zobject)->name
E_CORE_ERROR	"Unable to start %s module", module->name
E_CORE_WARNING	"%s:  Unable to register functions, unable to load", module->name
E_CORE_WARNING	"Cannot load module '%s' because conflicting module '%s' is already loaded", module->name, dep->name
E_CORE_WARNING	"Cannot load module '%s' because required module '%s' is not loaded", module->name, dep->name
E_CORE_WARNING	"Cannot open '%s' for reading", browscap
E_CORE_WARNING	"Module '%s' already loaded", module->name
E_ERROR	"%s cannot implement %s - it is not an interface", ce->name, iface->name);
E_ERROR	"%s() cannot be called statically", get_active_function_name(TSRMLS_C)
E_ERROR	"[] operator not supported for strings");
E_ERROR	"Access to undeclared static property:  %s::$%s", ce->name, property_name
E_ERROR	"Allowed memory size of %d bytes exhausted (tried to allocate %d bytes)", php_mem_limit, s
E_ERROR	"Allowed memory size of %d bytes exhausted at %s:%d (tried to allocate %d bytes)", php_mem_limit, file, lineno, s
E_ERROR	"Argument %d passed to %s%s%s() must %s %s", arg_num, fclass, fsep, fname, error_msg, ce->name);
E_ERROR	"Argument %d passed to %s%s%s() must %s %s, called in %s on line %d and defined", arg_num, fclass, fsep, fname, error_msg, ce->name, ptr->op_array->filename, ptr->opline->lineno);
E_ERROR	"Argument %d passed to %s%s%s() must be an array", arg_num, fclass, fsep, fname);
E_ERROR	"Argument %d passed to %s%s%s() must be an array, called in %s on line %d and defined", arg_num, fclass, fsep, fname, ptr->op_array->filename, ptr->opline->lineno);
E_ERROR	"Argument %d passed to %s%s%s() must be an object of class %s", arg_num, fclass, fsep, fname, cur_arg_info->class_name);
E_ERROR	"Argument %d passed to %s%s%s() must be an object of class %s, called in %s on line %d and defined", arg_num, fclass, fsep, fname, cur_arg_info->class_name, ptr->op_array->filename, ptr->opline->lineno);
E_ERROR	"Argument %d passed to %s%s%s() must not be null", arg_num, fclass, fsep, fname);
E_ERROR	"Argument %d passed to %s%s%s() must not be null, called in %s on line %d and defined", arg_num, fclass, fsep, fname, ptr->op_array->filename, ptr->opline->lineno);
E_ERROR	"Arrived at end of main loop which shouldn't happen");
E_ERROR	"Attempt to unset static property %s::$%s", ce->name, property_name
E_ERROR	"Call to %s method %s::%s() from context '%s'", zend_visibility_string(fbc->common.fn_flags), ZEND_FN_SCOPE_NAME(fbc), function_name_strval, EG(scope) ? EG(scope)->name : ""
E_ERROR	"Call to %s method %s::%s() from context '%s'", zend_visibility_string(fbc->common.fn_flags), ZEND_FN_SCOPE_NAME(fbc), method_name, EG(scope) ? EG(scope)->name : ""
E_ERROR	"Call to a member function %s() on a non-object", function_name_strval);
E_ERROR	"Call to private %s::%s() from context '%s'", constructor->common.scope->name, constructor->common.function_name, EG(scope) ? EG(scope)->name : ""
E_ERROR	"Call to private %s::__clone() from context '%s'", ce->name, EG(scope) ? EG(scope)->name : "");
E_ERROR	"Call to protected %s::%s() from context '%s'", constructor->common.scope->name, constructor->common.function_name, EG(scope) ? EG(scope)->name : ""
E_ERROR	"Call to protected %s::__clone() from context '%s'", ce->name, EG(scope) ? EG(scope)->name : "");
E_ERROR	"Call to undefined function %s()", function_name_strval);
E_ERROR	"Call to undefined method %s::%s()", class_name, function_name_strval
E_ERROR	"Call to undefined method %s::%s()", Z_OBJ_CLASS_NAME_P(EX(object)), function_name_strval);
E_ERROR	"Can not call constructor");
E_ERROR	"Can only throw objects");
E_ERROR	"Cannot access %s property %s::$%s", zend_visibility_string(property_info->flags), ce->name, property_name
E_ERROR	"Cannot access %s property %s::$%s", zend_visibility_string(property_info->flags), ce->name, Z_STRVAL_P(member)
E_ERROR	"Cannot access empty property"
E_ERROR	"Cannot access parent:: when current class scope has no parent"
E_ERROR	"Cannot access parent:: when no class scope is active"
E_ERROR	"Cannot access property started with '\\0'"
E_ERROR	"Cannot access self:: when no class scope is active"
E_ERROR	"Cannot access undefined property for object with overloaded property access"
E_ERROR	"Cannot assign by reference to overloaded object"
E_ERROR	"Cannot break/continue %d level%s", original_nest_levels, (original_nest_levels == 1) ? "" : "s");
E_ERROR	"Cannot call abstract method %s::%s()", EG(scope)->name, EX(op_array)->function_name);
E_ERROR	"Cannot call abstract method %s::%s()", EX(function_state).function->common.scope->name, EX(function_state).function->common.function_name);
E_ERROR	"Cannot call method %s() of class %s which is not a derived from %s", fname, calling_scope->name, check_scope_or_static->name
E_ERROR	"Cannot call method %s() or method does not exist", fname
E_ERROR	"Cannot call method %s::%s() or method does not exist", calling_scope->name, fname
E_ERROR	"Cannot call overloaded function for non-object");
E_ERROR	"Cannot create references to/from string offsets nor overloaded objects");
E_ERROR	"Cannot get arguments for __call"
E_ERROR	"Cannot increment/decrement overloaded objects nor string offsets");
E_ERROR	"Cannot instantiate %s %s", class_type,  EX_T(opline->op1.u.var).class_entry->name);
E_ERROR	"Cannot instantiate %s %s", what, class_type->name
E_ERROR	"Cannot override final %s::%s() with %s::%s(
E_ERROR	"Cannot pass parameter %d by reference", opline->op2.u.opline_num);
E_ERROR	"Cannot return string offsets by reference");
E_ERROR	"Cannot unset string offsets");
E_ERROR	"Cannot use [] for reading");
E_ERROR	"Cannot use assign-op operators with overloaded objects nor string offsets");
E_ERROR	"Cannot use object as array");
E_ERROR	"Cannot use object of type %s as array", ce->name
E_ERROR	"Cannot use string offset as an array");
E_ERROR	"Class %s contains %d abstract method%s and must therefore be declared abstract or implement the remaining methods (" MAX_ABSTRACT_INFO_FMT MAX_ABSTRACT_INFO_FMT MAX_ABSTRACT_INFO_FMT "
E_ERROR	"Class '%s' not found", class_name
E_ERROR	"Class '%s' not found", Z_STRVAL_PP(fci->object_pp)
E_ERROR	"Class entry requested for an object without PHP class"
E_ERROR	"Class name must be a valid object or a string");
E_ERROR	"Compression failed"
E_ERROR	"Corrupted fcall_info provided to zend_call_function()"
E_ERROR	"Exception thrown without a stack frame"
E_ERROR	"Exceptions must be valid objects derived from the Exception base class"
E_ERROR	"func_get_arg(): Can't be used as a function parameter"
E_ERROR	"func_get_args(): Can't be used as a function parameter"
E_ERROR	"func_num_args(): Can't be used as a function parameter"
E_ERROR	"Function %s(%s) threw an exception of type '%s'", ZEND_AUTOLOAD_FUNC_NAME, name, Z_OBJCE_P(EG(exception))->name
E_ERROR	"Function name must be a string");
E_ERROR	"get_class() called without object from outside a class"
E_ERROR	"Ignoring exception from %s::__destruct() while an exception is already active", object->ce->name
E_ERROR	"Illegal offset type"
E_ERROR	"Interface %s cannot not implement itself", ce->name
E_ERROR	"Interface '%s' not found", class_name
E_ERROR	"Internal error: Could not find the property %s", ref->prop->name
E_ERROR	"Internal error: Failed to retrieve the argument's reflection object"
E_ERROR	"Internal error: Failed to retrieve the reflection object"
E_ERROR	"Invalid opcode %d/%d/%d.", EX(opline)->opcode, EX(opline)->op1.op_type, EX(opline)->op2.op_type);
E_ERROR	"Maximum execution time of %d second%s exceeded",
E_ERROR	"Method %s::__toString() must return a string value", Z_OBJCE_P(readobj)->name
E_ERROR	"Method name must be a string");
E_ERROR	"Need to supply an object when throwing an exception"
E_ERROR	"Nesting level too deep - recursive dependency?"
E_ERROR	"Object does not support method calls"
E_ERROR	"Object does not support method calls");
E_ERROR	"Objects used as arrays in post/pre increment/decrement must return values by reference");
E_ERROR	"Only variables can be passed by reference");
E_ERROR	"Out of memory: cannot allocate %zd bytes!", heap->block_size
E_ERROR	"Out of memory: cannot allocate %zd bytes!", true_size
E_ERROR	"PDO: driver %s requires PDO API version %ld; this is PDO version %d",
E_ERROR	"Possible integer overflow in memory allocation (%zd * %zd + %zd)", nmemb, size, offset
E_ERROR	"Trying to clone an uncloneable object of class %s",  class_name);
E_ERROR	"Trying to clone an uncloneable object of class %s",  Z_OBJCE_PP(p)->name
E_ERROR	"Trying to clone an uncloneable object of class %s", ce->name);
E_ERROR	"Unable to cast node to string"
E_ERROR	"Uncaught %s\n  thrown", Z_STRVAL_P(str)
E_ERROR	"Uncaught exception '%s'", ce_exception->name
E_ERROR	"Undefined class constant '%s'", opline->op2.u.constant.value.str.val);
E_ERROR	"Undefined offset for object of type %s used as array", ce->name
E_ERROR	"Unexpected inconsistency in create_function()"
E_ERROR	"Unknown function:  %s()", fname->value.str.val);
E_ERROR	"Unsupported operand types"
E_ERROR	"Using $this when not in object context");
E_ERROR	"Wrong parameters for ErrorException([string $exception [, long $code, [ long $severity, [ string $filename, [ long $lineno ]]]]])"
E_ERROR	"Wrong parameters for Exception([string $exception [, long $code ]])"
E_ERROR	"You MUST load PDO before loading any PDO drivers"
E_ERROR	...
E_ERROR	\"Invalid opcode %d/%d/%d.\", EX(opline)->opcode, EX(opline)->op1.op_type, EX(opline)->op2.op_type);\n");
E_NOTICE	"A non well formed numeric value encountered"
E_NOTICE	"Array to string conversion"
E_NOTICE	"Constant %s already defined", name
E_NOTICE	"Exceptions must be derived from the Exception base class"
E_NOTICE	"Failure installing Tidy output buffering."
E_NOTICE	"Hex number is too big: %s", yytext
E_NOTICE	"Matched, but too many substrings"
E_NOTICE	"Non-callable array passed to zend_call_function()"
E_NOTICE	"Object of class %s could not be converted to double", Z_OBJCE_P(op)->name
E_NOTICE	"Object of class %s could not be converted to int", Z_OBJCE_P(op)->name
E_NOTICE	"Object of class %s could not be converted to string", Z_OBJCE_P(expr)->name
E_NOTICE	"Object of class %s to string conversion", Z_OBJCE_P(op)->name
E_NOTICE	"Only variable references should be returned by reference"
E_NOTICE	"Trying to get property of non-object"
E_NOTICE	"Undefined index:  %s", offset_key
E_NOTICE	"Undefined index:  %s", Z_STRVAL_P(offset)
E_NOTICE	"Undefined offset:  %ld", index
E_NOTICE	"Undefined offset:  %ld", Z_LVAL_P(offset)
E_NOTICE	"Undefined property:  %s::$%s", zobj->ce->name, Z_STRVAL_P(member)
E_NOTICE	"Undefined property: %s", Z_STRVAL_P(member)
E_NOTICE	"Undefined variable: %s", cv->name
E_NOTICE	"Undefined variable: %s", varname->value.str.val
E_NOTICE	"Uninitialized string offset:  %d", T->str_offset.offset
E_NOTICE	"Use of undefined constant %s - assumed '%s'",
E_NOTICE	"Use of undefined constant %s - assumed '%s'",	str_index, str_index
E_STRICT	"Accessing static property %s::$%s as non static", ce->name, Z_STRVAL_P(member)
E_STRICT	"Assigning the return value of new by reference is deprecated");  zend_check_writable_variable(&$1); zend_do_extended_fcall_begin(TSRMLS_C); zend_do_begin_new_object(&$4, &$5 TSRMLS_CC); } ctor_arguments { zend_do_end_new_object(&$3, &$4, &$7 TSRMLS_CC); zend_do_extended_fcall_end(TSRMLS_C); zend_do_end_variable_parse(BP_VAR_W, 0 TSRMLS_CC); zend_do_assign_ref(&$$, &$1, &$3 TSRMLS_CC
E_STRICT	"Assigning the return value of new by reference is deprecated");  zend_check_writable_variable(&(yyvsp[(1) - (5)])); zend_do_extended_fcall_begin(TSRMLS_C); zend_do_begin_new_object(&(yyvsp[(4) - (5)]), &(yyvsp[(5) - (5)]) TSRMLS_CC
E_STRICT	"Creating default object from empty value"
E_STRICT	"Declaration of %s::%s() should be compatible with that of %s::%s()", ZEND_FN_SCOPE_NAME(child), child->common.function_name, ZEND_FN_SCOPE_NAME(parent), parent->common.function_name
E_STRICT	"Function %s%s%s(
E_STRICT	"Implicit cloning object of class '%s' because of 'zend.ze1_compatibility_mode'", class_name
E_STRICT	"is_a(): Deprecated. Please use the instanceof operator"
E_STRICT	"Non-static method %s::%s() cannot be called statically", (*ce_ptr)->name, fptr->common.function_name
E_STRICT	"Non-static method %s::%s() cannot be called statically, assuming $this from compatible context %s", (*ce_ptr)->name, fptr->common.function_name, Z_OBJCE_P(EG(This))->name
E_STRICT	"Non-static method %s::%s() should not be called statically, assuming $this from incompatible context", EX(fbc)->common.scope->name, EX(fbc)->common.function_name
E_STRICT	"Only variables should be assigned by reference"
E_STRICT	"Only variables should be passed by reference"
E_STRICT	"Redefining already defined constructor for class %s", CG(active_class_entry)->name
E_STRICT	"Resource ID#%ld used as offset, casting to integer (%ld)", dim->value.lval, dim->value.lval
E_STRICT	"Usage of {} to access string offsets is deprecated and will be removed in PHP 6"
E_WARNING	"%s", error_buf
E_WARNING	"%s%s%s(
E_WARNING	"%s%s%s(): %d is not a valid %s resource", class_name, space, get_active_function_name(TSRMLS_C), id, resource_type_name
E_WARNING	"%s%s%s(): no %s resource supplied", class_name, space, get_active_function_name(TSRMLS_C), resource_type_name
E_WARNING	"%s%s%s(): supplied argument is not a valid %s resource", class_name, space, get_active_function_name(TSRMLS_C), resource_type_name
E_WARNING	"%s%s%s(): supplied resource is not a valid %s resource", class_name, space, get_active_function_name(TSRMLS_C), resource_type_name
E_WARNING	"%s(
E_WARNING	"%s() expects the argument (%s
E_WARNING	"%s() has been disabled for security reasons", class_type->name
E_WARNING	"%s() has been disabled for security reasons", get_active_function_name(TSRMLS_C)
E_WARNING	"%s::__toString() did not return anything", Z_OBJCE_P(object)->name
E_WARNING	"%s::__toString() must return a string", ce_exception->name
E_WARNING	"__clone method called on non-object"
E_WARNING	"add_assoc_function() is no longer supported"
E_WARNING	"Attempt to assign property of non-object"
E_WARNING	"Attempt to increment/decrement property of non-object"
E_WARNING	"Cannot add element to the array as the next element is already occupied"
E_WARNING	"Cannot add internal functions to return value from get_defined_functions()"
E_WARNING	"Cannot add user functions to return value from get_defined_functions()"
E_WARNING	"Cannot convert to ordinal value"
E_WARNING	"Cannot convert to real value (type=%d)", op->type
E_WARNING	"Cannot read property of object - no read handler defined"
E_WARNING	"Cannot unset offset in a non-array variable"
E_WARNING	"Cannot use a NULL value as an array"
E_WARNING	"Cannot use a scalar value as an array"
E_WARNING	"Cannot use call_user_function on objects without a class entry"
E_WARNING	"Cannot write property of object - no write handler defined"
E_WARNING	"Class %s has no unserializer", ce->name
E_WARNING	"Clone method does not require arguments"
E_WARNING	"Constants may only evaluate to scalar values"
E_WARNING	"Cookie names can not contain any of the folllowing '=,; \\t\\r\\n\\013\\014' (%s)", name;
E_WARNING	"Cookie values can not contain any of the folllowing ',; \\t\\r\\n\\013\\014' (%s)", value
E_WARNING	"Division by zero"
E_WARNING	"First parameter must either be an object or the name of an existing class"
E_WARNING	"foreach() can not iterate over objects without PHP class"
E_WARNING	"func_get_arg():  Argument %ld not passed to function", requested_offset
E_WARNING	"func_get_arg():  Called from the global scope - no function context"
E_WARNING	"func_get_arg():  The argument number should be >= 0"
E_WARNING	"func_get_args():  Called from the global scope - no function context"
E_WARNING	"func_num_args():  Called from the global scope - no function context"
E_WARNING	"Get subpatterns list failed"
E_WARNING	"Illegal offset type in isset or empty"
E_WARNING	"Illegal offset type in unset"
E_WARNING	"Illegal offset type"
E_WARNING	"Illegal string offset:  %d", T->str_offset.offset
E_WARNING	"Illegal type returned from %s::key()", iter->ce->name
E_WARNING	"Insufficient data for unserializing - %ld required, %d present", datalen, max - (*p)
E_WARNING	"Internal error: Cannot find extension function %s in global function table", func->fname
E_WARNING	"Invalid argument supplied for foreach()"
E_WARNING	"Invalid error type specified"
E_WARNING	"invalid type '%s' passed to xmlrpc_set_type()", Z_STRVAL_PP(type)
E_WARNING	"Invocation of %s's constructor failed", ce->name
E_WARNING	"Invoke() expects at least one parameter, none given"
E_WARNING	"Length must be greater than or equal to 0"
E_WARNING	"Missing argument %ld for %s%s%s()", opline->op1.u.constant.value.lval, class_name, space, get_active_function_name(TSRMLS_C)
E_WARNING	"Missing argument %ld for %s%s%s(), called in %s on line %d and defined", opline->op1.u.constant.value.lval, class_name, space, get_active_function_name(TSRMLS_C), ptr->op_array->filename, ptr->opline->lineno
E_WARNING	"Nothing returned from %s::key()", iter->ce->name
E_WARNING	"options should have the form [\"wrappername\"][\"optionname\"] = $value"
E_WARNING	"Parameter wasn't passed by reference"
E_WARNING	"request_startup() for %s module failed", module->name
E_WARNING	"String is not zero-terminated (%s) (source: %s:%d)", (z)->value.str.val ZEND_FILE_LINE_RELAY_CC
E_WARNING	"String is not zero-terminated (%s)", (z)->value.str.val
E_WARNING	"Supplied argument is not a valid resource handle"
E_WARNING	"That's not a dispatchable interface!! type kind = %08x", attr->typekind
E_WARNING	"This object doesn't support property references"
E_WARNING	"Unable to find typeinfo using the parameters supplied"
E_WARNING	"Uncaught %s in exception handling during call to %s::__tostring()", Z_OBJCE_P(EG(exception))->name, ce_exception->name
E_WARNING	"Unknown class passed as parameter"
E_WARNING	"Unknown list entry type in request shutdown (%d)", le->type
E_WARNING	"Unknown persistent list entry type in module shutdown (%d)", le->type
E_WARNING	"Variable passed to each() is not an array or object"
E_WARNING	"Wrong parameter count for %s%s%s()", class_name, space, get_active_function_name(TSRMLS_C)
E_WARNING	"Wrong value for parameter 4 in call to %s()", get_active_function_name(TSRMLS_C)
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

Oh hell yes. Now that I see that, I think that is where I remember the list from. Thanks feyd. That is exactly what I was looking for.
Post Reply