Как обернуть все текстовые узлы тегами?
Ввод:
<p>Before <span>text1 <i>text2</i> text3</span> after</p>
Желаемый вывод:
<p><b>Before </b><span><b>text1 </b><i><b>text2</b></i><b> text3</b></span><b> after</b></p>
Мой код:
<?php
$html = <<<'HTML'
<div>
<p>Before <span>text1 <i>text2</i> text3</span> after</p>
</div>
HTML;
$dom = new DOMDocument;
$dom->preserveWhiteSpace = false;
$html = mb_convert_encoding( $html, "HTML-ENTITIES", "UTF-8" );
@$dom->loadHTML( $html, LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD );
$xpath = new DOMXPath( $dom );
$childrens = $xpath->query('//p[1]/descendant-or-self::node()');
foreach ( $childrens as $child ) {
$child->ownerDocument->saveHTML( $child );
}
echo $dom->saveHTML();
Спасибо!