PHP xml_get_current_line_number() Function

In this chapter you will learn:

  1. Description for PHP xml_get_current_line_number() Function
  2. Syntax for PHP xml_get_current_line_number() Function
  3. Parameter for PHP xml_get_current_line_number() Function
  4. Return for PHP xml_get_current_line_number() Function
  5. Example - gets the current line number for an XML parser

Description

The xml_get_current_line_number() function gets the current line number for an XML parser.

Syntax

xml_get_current_line_number(parser)

Parameter

ParameterIs RequiredDescription
parserRequired.XML parser to use

Return

This function returns the current line number on success, or FALSE on failure.

Example

Content for test.xml


<data>
   <missEndTag>
</data>

gets the current line number for an XML parser


<?php//from  j  a  v  a2s  .  co m

$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);
?>

Next chapter...

What you will learn in the next chapter:

  1. Description for PHP xml_get_error_code() Function
  2. Syntax for PHP xml_get_error_code() Function
  3. Parameter for PHP xml_get_error_code() Function
  4. Return for PHP xml_get_error_code() Function
  5. Example - gets the XML parser error code