The xml_get_error_code() function gets the XML parser error code.
xml_get_error_code(parser)
Parameter | Is Required | Description |
---|---|---|
parser | Required. | XML parser to use |
This function returns the error code on success, or FALSE on failure.
Content for test.xml
<data> <missEndTag> </data>
Get the XML parser error code
<?php/*w ww. j av a 2s.c om*/
$xmlparser = xml_parser_create();
$fp = fopen('test.xml', 'r');
while ($xmldata = fread($fp, 1024)){
if (!xml_parse($xmlparser,$xmldata,feof($fp))){
print "ERROR: ";
print xml_error_string(xml_get_error_code($xmlparser));
print "\n";
print "Line: ";
print xml_get_current_line_number($xmlparser);
print "\n";
print "Column: ";
print xml_get_current_column_number($xmlparser);
print "\n";
}
}
xml_parser_free($xmlparser);
?>