I'm trying to replace all tags with tags using DOMDocument in PHP and almost all my tests passed. I'm sure there are other scenarios I'm forgetting, but for now, I'm missing just one:

ORIGINAL:

<p><font color="#ff0000">BEFORE <font color="#00ff00">BEFORE <font color="#0000ff">VAL</font> AFTER</font> AFTER</font></p>

RESULT:

<p><span style="color: #ff0000">BEFORE BEFORE VAL AFTER AFTER</span></p>

The PHP code for this:

$html = '<p><font color="#ff0000">BEFORE <font color="#00ff00">BEFORE <font color="#0000ff">VAL</font> AFTER</font> AFTER</font></p>';

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

foreach($dom->getElementsByTagName('font') as $node) {
    $font_nodes[] = $node;
}

//$font_nodes = array_reverse($font_nodes);

foreach($font_nodes as $font) {
    $a_style = array_filter(explode(';', $font->getAttribute('style')));

    if($a_color = $font->getAttribute('color')) {
        $a_style[] = 'color: '.$a_color;
    }

    $span = $dom->createElement('span', $font->nodeValue);
    $span->setAttribute('style', implode('; ', $a_style));

    $font->parentNode->replaceChild($span, $font);
}

echo preg_replace("#(<!DOCTYPE.+|<\/?html>|<\/?body>)#", '', $dom->saveHTML());

I thought that getElementsByTagName was the culprit since it was loading the nodes in order, so I tried to start from the deepest tag by reversing the array, but that didn't work so the line is commented.

P.S: In case you're wondering why the first loop is needed to save all the nodes and loop them again, please read this: http://robrosenbaum.com/php/domnodelist-gotchas/

link|improve this question

If you could include the output, that may be helpful... – jswolf19 Feb 19 '11 at 2:05
It's there since I posted this. – Ricardo Amaral Feb 19 '11 at 2:18
feedback

3 Answers

up vote 2 down vote accepted

This works. I tested it. :-)

Replace the line:

$span = $dom->createElement('span', $font->nodeValue);

With this:

$span = $dom->createElement('span');
$children = array(); 
foreach ($font->childNodes as $child) $children[] = $child;
foreach ($children as $child) $span->appendChild($child);
link|improve this answer
I don't have access to a system with php 5... :P – jswolf19 Feb 19 '11 at 2:51
I was doing something similar but only with one loop, forgetting why I had 2 for the <font> tag in the first place. The issue I was having was the same. Thanks. – Ricardo Amaral Feb 19 '11 at 2:52
I've rewarded you with a vote for a technically correct answer, but will at the same time give a gentle critique. A good answer should explain the problem and help people learn, not just supply code. – leebriggs Feb 19 '11 at 2:54
@jswolf19 I can't imagine living without PHP5. Get a Mac! @leeeb I'm teaching by example. :-P – Mark Eirich Feb 19 '11 at 2:59
If a pupil passed an exam by copying a sheet with the answers, would that be learning by example? Now take the advice with good grace, or I'll be mean and take away my vote! – leebriggs Feb 19 '11 at 3:04
show 2 more comments
feedback

When you call replaceChild, the child nodes of the font element remain attached to the removed node, rather than become attached to the new span element. The font elements are all individually being replaced, but they're no longer attached to the rest of the dom elements. This is why your visible output ends at the top level span element, which is empty.

To solve this, you will need to add a few extra lines of code to copy all of the child nodes from $font to $span after replaceNode.

link|improve this answer
A little help please, I can't seem to do it... – Ricardo Amaral Feb 19 '11 at 2:31
You'll learn better if you write those few lines yourself ;) – leebriggs Feb 19 '11 at 2:34
array_reverse is not necessary. See my answer... – Mark Eirich Feb 19 '11 at 2:39
Quite right, my mistake in this case. – leebriggs Feb 19 '11 at 2:44
+1 for giving the explanation that my answer lacked. :-) – Mark Eirich Feb 19 '11 at 3:01
feedback

I'm pretty sure:

$font->parentNode->replaceChild($span, $font);

is your culprit because the nested elements' parents are no longer in the document. You were on the right track trying to reverse the order, but when you reversed, you overwrote your changes because you were using a copy of the parent font that still included the child font. I don't have a system I can test on, but I imagine code like this will do what you want it to:

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

$font_nodes = $dom->getElementsByTagName('font');
while($font = $font_nodes->item(0)) {
    $a_style = array_filter(explode(';', $font->getAttribute('style')));

    if($a_color = $font->getAttribute('color')) {
        $a_style[] = 'color: '.$a_color;
    }

    $span = $dom->createElement('span', $font->nodeValue);
    $span->setAttribute('style', implode('; ', $a_style));

    $font->parentNode->replaceChild($span, $font);

    $font_nodes = $dom->getElementsByTagName('font');
}
link|improve this answer
I get this on the while Parse error: syntax error, unexpected '[, and I can't seem to fix it. – Ricardo Amaral Feb 19 '11 at 2:30
@Nazgulled, sorry, php doesn't like accessing arrays directly from the return of the function... Try the edited code – jswolf19 Feb 19 '11 at 2:48
Nope, still a no go Fatal error: Cannot use object of type DOMNodeList as array – Ricardo Amaral Feb 19 '11 at 2:54
@Nazgulled, sorry, I was looking at the PHP4 docs that said getElementsByTagName returns an array... ^^; You probably already have an acceptable answer by now, anyway ^_^ – jswolf19 Feb 20 '11 at 9:08
Still, if your solution worked, it would be more compact. No errors now, but it didn't quite work, here's the result: <p><span style="color: #ff0000">BEFORE </span><span style="color: #00ff00">BEFORE </span><span style="color: #0000ff">VAL</span> AFTER AFTER</p>. It missed the last two words... – Ricardo Amaral Feb 20 '11 at 13:04
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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