1

例如,<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的答案:从文本中删除特定域的所有超链接会删除指向特定 url 的链接,但也会删除文本。

http://php-opensource-help.blogspot.ie/2010/10/how-to-remove-hyperlink-from-string.html上的站点从字符串中删除了超链接,但我似乎无法修改模式使其仅适用于特定网站。

4

1 回答 1

5
$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 倍。

于 2013-02-11T00:31:42.100 回答