PHP DOM functions reading line number from input file - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T23:48:23Z http://stackoverflow.com/feeds/question/881248 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/881248/php-dom-functions-reading-line-number-from-input-file 0 PHP DOM functions reading line number from input file nickf 2009-05-19T06:32:59Z 2009-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-&gt;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: &lt;!-- myFile.xml --&gt; 2: &lt;foobar&gt; 3: &lt;foo&gt;FOO&lt;/foo&gt; 4: &lt;bar&gt;BAR&lt;/bar&gt; 5: &lt;/foobar&gt; </code></pre> <p>and the PHP:</p> <pre><code>$xp = new DOMXPath($doc); $bars = $xp-&gt;query("//bar"); $myBar = $bars[0]; echo "The first &lt;bar&gt; element is on line " . performMagicHere(); // 4 </code></pre> http://stackoverflow.com/questions/881248/php-dom-functions-reading-line-number-from-input-file/881279#881279 0 Answer by SmilingRob for PHP DOM functions reading line number from input file SmilingRob 2009-05-19T06:42:02Z 2009-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#881291 1 Answer by TML for PHP DOM functions reading line number from input file TML 2009-05-19T06:46:28Z 2009-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>