<?php $html = <<<HTML <div> <div class="coincodex-content"> hello this is content <div class="delete_this" style="margin: 8px 0; clear: both;"> <div> <center><span style="font-size:11px; color: gray;">TEST</span></center> <b>TEST</b><br><br> </div> </div> <div class="preserved"> Test2 </div> </div> </div> HTML; $doc = new DOMDocument(); $doc->loadHTML($html); $xpath = new DOMXPath($doc); $nodelist = $xpath->query( '//*[@class="coincodex-content"]' ); $fragment = []; foreach($nodelist as $contentNode){ $removeNodelist = $xpath->query('//div[@class="delete_this"]',$contentNode); $item = $removeNodelist->item(0); //only first $item->parentNode->removeChild($item); $fragment[] = $doc->saveHTML($contentNode); } echo $fragment[0];
You have javascript disabled. You will not be able to edit any code.