<?php $html = <<<HTML <div> <p> some text <a href="../plugins/re_records/somefile.php?page=something&id=345">find_me_1</a></p> <br> <a href="../plugins/re_records/somefile.php?page=something&id=99">find_me_2</a> <div> <div> <a href="example.com?page=something&id=55">don't even think about it!</a> <a href="../plugins/re_records/somefile.php?page=something&id=90210">find_me_3</a> </div> </div> </div> HTML; $hrefStartsWith = '../plugins/re_records/somefile.php?page=something&id='; $dom = new DOMDocument(); libxml_use_internal_errors(true); $dom->loadHTML($html, LIBXML_HTML_NODEFDTD | LIBXML_HTML_NOIMPLIED); $xpath = new DOMXPath($dom); foreach ($xpath->query("//a[starts-with(@href, '$hrefStartsWith')]") as $a) { $a->setAttribute('href', '/map/' . $a->nodeValue); } echo $dom->saveHTML();
You have javascript disabled. You will not be able to edit any code.