$html = '...I can haz HTML?...';
$whitelist = array('herpyderp.com', 'google.com');
$dom = new DomDocument();
$dom->loadHtml($html);
$links = $dom->getELementsByTagName('a');
foreach($links as $link){
$host = parse_url($link->getAttribute('href'), PHP_URL_HOST);
if($host && !in_array($host, $whitelist)){
// create a text node with the contents of the blacklisted link
$text = new DomText($link->nodeValue);
// insert it before the link
$link->parentNode->insertBefore($text, $link);
// and remove the link
$link->parentNode->removeChild($link);
}
}
// remove wrapping tags added by the parser
$dom->removeChild($dom->firstChild);
$dom->replaceChild($dom->firstChild->firstChild->firstChild, $dom->firstChild);
$html = $dom->saveHtml();
对于那些害怕使用 DomDocument 而不是preg_replace
出于性能原因的人,我在此代码和 Q 中链接的代码(完全删除链接的代码)之间进行了快速测试 => DomDocument 仅慢了约 4 倍。