<?php $data = <<<DATA <a href="fruit.html">The Apple red</a> <a href="Construction.html#one">The big Home</a> <a href="automotive.html?lang=en">Car for rent</a> <a href="fruit.html">The Pineapple red</a> <a href="Construction.html#one">The biggest Home</a> <a href="automotive.html?lang=en">Cars for rent</a> DATA; $dom = new DOMDocument(); $dom->loadHTML($data); foreach($dom->getElementsByTagName("a") as $element) { if (preg_match('#\b(?:apple|big|car)\b#i', $element->nodeValue)) { echo $element->getAttribute("href") . PHP_EOL; } }
You have javascript disabled. You will not be able to edit any code.