我想使用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; }