I have a HTML node like so:

<b>Bold text</b>

A variable $el contains a DOMElement reference to the text of that HTML node ("Bold text"), got from the XPath expression //b/text()

I want to change the element to

<b><span>Bold Text</span></b>

So I tried:

$span = $doc->createElement('span', "Bold Text");
$el->parentNode->replaceChild($span,, $el)

which fails because parentNode is null.

So, as a test, I tried: $el->insertBefore($span, $el);

which throws no errors but produces no change in the output.

Any thoughts?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

DOMXPath->query() using //b/text() should return a DOMNodeList. Get an item using the item() method. It should be a DOMText, which is a DOMNode and parentNode shouldn't be null.

link|improve this answer
Thanks, I filed a bug with at php.net, and they appended the SimpleXML documentation to indicate that /text() XPath queries don't return objects in the same format as other queries – waitinforatrain Feb 13 '11 at 3:17
feedback

Your Answer

 
or
required, but never shown

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