使用PHP DOMDocument更改标签属性值

我想使用PHP DOMDocument更改标签属性的值。

例如,假设我们有以下这行HTML:

<a href="http://foo.bar/">Click here</a>

我将上述代码加载到PHP中,如下所示:

$dom = new domDocument;

$dom->loadHTML('<a href="http://foo.bar/">Click here</a>');

我想使用PHP的DOMDocument扩展名将“ href”值更改为“ http://google.com/”。这可能吗?

与往常一样感谢您的帮助!

回答:

$dom = new DOMDocument();

$dom->loadHTML('<a href="http://foo.bar/">Click here</a>');

foreach ($dom->getElementsByTagName('a') as $item) {

$item->setAttribute('href', 'http://google.com/');

echo $dom->saveHTML();

exit;

}

以上是 使用PHP DOMDocument更改标签属性值 的全部内容, 来源链接: utcz.com/qa/426133.html

回到顶部