Using PHP I'm attempting to take an HTML string passed from a WYSIWYG editor and replace the children of an element inside of a preloaded HTML document with the new HTML.

So far I'm loading the document identifying the element I want to change by ID but the process to convert an HTML to something that can be placed inside a DOMElement is eluding me.

libxml_use_internal_errors(true);

$doc = new DOMDocument();
$doc->loadHTML($html);

$element = $doc->getElementById($item_id);
if(isset($element)){
    //Remove the old children from the element
    while($element->childNodes->length){
        $element->removeChild($element->firstChild);
    }

    //Need to build the new children from $html_string and append to $element
}
link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

If your HTML string is well-formed XHTML, then you can clear your element of all child elements and do this:

$fragment = $doc->createDocumentFragment();
$fragment->appendXML($html_string);
$element->appendChild($fragment);

But if $html_string is not well-formed XHTML, it will fail. If it does, you'll have to use loadHTML() — but as Artem says, it will add elements around your fragment which you will have to strip.

Unlike PHP, Javascript has the innerHTML property which allows you to do this very easily. I needed something like it for a project so I extended PHP's DOMElement to include Javascript-like innerHTML access:

http://www.keyvan.net/2010/07/javascript-like-innerhtml-access-in-php/

With it you can access the innerHTML property and change it just as you would in Javascript:

echo $element->innerHTML;
$elem->innerHTML = '<a href="http://example.org">example</a>';
link|improve this answer
feedback

You can use loadHTML() on a fragment of code and then append the resulting created nodes into the original DOM tree.

link|improve this answer
Would you be suggesting creating a new DOMDocument using load HTML then taking the children of the new Document's body tag and appending them to the orginal DOM? Or is there another loadHTML() function I'm missing. – AWinter Feb 10 '10 at 1:15
I really hate how html and body tags are added automatically when you do things like saveHTML() or loadHTML(). Is there an easy workaround other than writing a wrapper that would strip them off? – Artem Russakovskii Feb 18 '10 at 22:28
feedback

Your Answer

 
or
required, but never shown

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