<?php $html = <<<'HTML' <!DOCTYPE html><html><body> <small>0</small> <small>1</small> <small>2</small> <small>3</small> </body></html> HTML; $dom = new DOMDocument; $dom->loadHTML($html); $nodeList = $dom->getElementsByTagName('small'); foreach($nodeList as $node) { $node->parentNode->removeChild($node); } echo $dom->saveHTML();
You have javascript disabled. You will not be able to edit any code.