PHP DOM functions reading line number from input file - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T23:48:23Zhttp://stackoverflow.com/feeds/question/881248http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/881248/php-dom-functions-reading-line-number-from-input-file0PHP DOM functions reading line number from input filenickf2009-05-19T06:32:59Z2009-05-19T06:46:28Z
<p>I have a program which reads an XML file using the DOM functions:</p>
<pre><code>$doc = new DOMDocument('1.0');
$doc->load("myFile.xml");
</code></pre>
<p>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?</p>
<p>For example:</p>
<pre><code>1: <!-- myFile.xml -->
2: <foobar>
3: <foo>FOO</foo>
4: <bar>BAR</bar>
5: </foobar>
</code></pre>
<p>and the PHP:</p>
<pre><code>$xp = new DOMXPath($doc);
$bars = $xp->query("//bar");
$myBar = $bars[0];
echo "The first <bar> element is on line " . performMagicHere(); // 4
</code></pre>
http://stackoverflow.com/questions/881248/php-dom-functions-reading-line-number-from-input-file/881279#8812790Answer by SmilingRob for PHP DOM functions reading line number from input fileSmilingRob2009-05-19T06:42:02Z2009-05-19T06:42:02Z<p>No, DOM does not store the line number. When the XML is loaded it then turned into internal objects that have no line numbers.</p>
<p>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.</p>
<p>:)</p>
http://stackoverflow.com/questions/881248/php-dom-functions-reading-line-number-from-input-file/881291#8812911Answer by TML for PHP DOM functions reading line number from input fileTML2009-05-19T06:46:28Z2009-05-19T06:46:28Z<p>You can't really do this with PHP's DOM class. DOM Level 3 <a href="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#DOMLocator-line-number" rel="nofollow">added support for this</a>, but we don't have DOM level 3 support in PHP yet.</p>