vote up 0 vote down star

I have a program which reads an XML file using the DOM functions:

$doc = new DOMDocument('1.0');
$doc->load("myFile.xml");

As I traverse the nodes in this document, is there a way to tell which line of the input file the node was defined on?

For example:

1: <!-- myFile.xml -->
2: <foobar>
3:     <foo>FOO</foo>
4:     <bar>BAR</bar>
5: </foobar>

and the PHP:

$xp = new DOMXPath($doc);
$bars = $xp->query("//bar");
$myBar = $bars[0];
echo "The first <bar> element is on line " . performMagicHere(); // 4
flag

68% accept rate

2 Answers

vote up 1 vote down check

You can't really do this with PHP's DOM class. DOM Level 3 added support for this, but we don't have DOM level 3 support in PHP yet.

link|flag
vote up 0 vote down

No, DOM does not store the line number. When the XML is loaded it then turned into internal objects that have no line numbers.

However, you could walk through the entire tree, then at every text node count the '\n' characters in the value until you reach $myBar, effectively giving you the line number.

:)

link|flag
I thought this would be the case. Manually counting through the line breaks isn't really an option, since identifying the node you're on could be very difficult. – nickf May 19 at 6:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.