<?php $html = <<<EOT <html><body><h2>Hello</h2> <h2>World</h2><h2><strong>!</strong></h2></body></html> EOT; $dom = new DOMDocument(); $dom->loadHTML($html); foreach($dom->getElementsByTagName('h2') as $h2) { if(!count($h2->getElementsByTagName('*'))){ var_dump($h2->textContent); } }
You have javascript disabled. You will not be able to edit any code.