例如,<a href="http://msdn.microsoft.com/art029nr/">remove links to here but keep text</a> but <a href="http://herpyderp.com">leave all other links alone</a>
我一直在尝试使用preg_replace来解决这个问题。我在这里搜索并找到解决问题的答案。
PHP: Remove all hyperlinks of specific domain from text的答案会删除指向特定网址的链接,但也会移除文字。
http://php-opensource-help.blogspot.ie/2010/10/how-to-remove-hyperlink-from-string.html处的网站从字符串中删除了一个超链接,但我似乎无法修改该模式,因此它只适用于特定网站。
答案 0 :(得分:3)
$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中链接的代码(完全删除链接的代码)之间进行了快速测试=&gt; DomDocument只慢了约4倍。