I'm trying to get the line number of a DOMElement object in PHP - the documentation says DOMElement extends DOMNode which implements the getLineNo() method, however, when I try to use this method I get:

Fatal error: Call to undefined method DOMElement::getLineNo()

Any ideas?

Thanks

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Upgrade to PHP 5.3 or higher, see the documentation. On a side note: dynamically added nodes (i.e. not in the XML document or string on load) will return 0.

link|improve this answer
Ohshi... PHP 5.3! Thanks – Tom Nov 5 '10 at 0:31
feedback

Your Answer

 
or
required, but never shown

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