PHP xml_get_error_code() Function

The xml_get_error_code() function gets the XML parser error code.This function returns the error code on success, or FALSE on failure.

int xml_get_error_code ( resource $parser )

Example -

The output of the code above could be:

ERROR: 76 Line: 5 Column: 41

ParameterDescription
parserA reference to the XML parser to get error code from.

This function returns FALSE if parser does not refer to a valid parser, or else it returns one of the error codes listed in the error codes section.