<?php $html = "<span data-img-type='cvr' data-img-att-alt='Cover of Greek Mythology' data-img-size-xs='image.jpg'></span> <h3> Cover of Greek Mythology </h3>"; $scriptDocument = new DOMDocument(); libxml_use_internal_errors(TRUE); if (!empty($html)){ $scriptDocument->loadHTML($html); libxml_clear_errors(); $scriptDOMXPath = new DOMXPath($scriptDocument); //get all the h3's with an class $scriptRow = $scriptDOMXPath->query('//h3'); //check if ($scriptRow->length > 0){ foreach($scriptRow as $row){ echo $row->nodeValue . "<br/>"; } } }
You have javascript disabled. You will not be able to edit any code.