PHP:从元素中删除超链接但保留文本和类

时间:2015-12-24 00:43:59

标签: php domdocument

我需要处理DOM并删除指向特定网站的所有超链接,同时保留基础文本。因此,<a href="abc.com">text</a>更改为text。从this thread获取提示,我写道:

$as = $dom->getElementsByTagName('a');
for ($i = 0; $i < $as->length; $i++) {
    $node = $as->item($i);
    $link_href = $node->getAttribute('href');
    if (strpos($link_href,'offendinglink.com') !== false) {
        $cl = $node->getAttribute('class');
        $text = new DomText($node->nodeValue);
        $node->parentNode->insertBefore($text, $node);
        $node->parentNode->removeChild($node);
        $i--;
    }
}

这项工作正常,但我还需要保留归因于违规<a>标记的类,并可能将其转换为<div><span>。因此,我需要这个:

<a href="www.offendinglink.com" target="_blank" class="nice" id="nicer">text</a>

变成这个:

<div class="nice">text</div>

如何在添加新元素后(例如在我的代码段中)访问新元素?

2 个答案:

答案 0 :(得分:1)

经过测试的解决方案:

<?php
$str = "<b>Dummy</b> <a href='http://google.com' target='_blank' class='nice' id='nicer'>Google.com</a> <a href='http://yandex.ru' target='_blank' class='nice' id='nicer'>Yandex.ru</a>";
$doc = new DOMDocument();
$doc->loadHTML($str);
$anchors = $doc->getElementsByTagName('a');
$l = $anchors->length;
for ($i = 0; $i < $l; $i++) {
    $anchor = $anchors->item(0);
    $link = $doc->createElement('div', $anchor->nodeValue);
    $link->setAttribute('class', $anchor->getAttribute('class'));
    $anchor->parentNode->replaceChild($link, $anchor);
}
echo preg_replace(['/^\<\!DOCTYPE.*?<html><body>/si', '!</body></html>$!si'], '', $doc->saveHTML());

或者查看runnable

答案 1 :(得分:1)

引用“如何在添加新元素后访问它(如在我的代码片段中)?” - 你的元素是$ text我认为..无论如何,我认为这应该有用,如果你需要保存类和textContent,但没有别的

foreach($dom->getElementsByTagName('a') as $url){
    if(parse_url($url->getAttribute("href"),PHP_URL_HOST)!=='badsite.com')    {
        continue;
    }
    $ele = $dom->createElement("div");
    $ele->textContent = $url->textContent;

    $ele->setAttribute("class",$url->getAttribute("class"));
    $url->parentNode->insertBefore($ele,$url);
    $url->parentNode->removeChild($url);
}