如何使用PHP DOMElement类将HTML字符串的href-value替换为新值?
使用jQuery我会做这样的事情
$('a[myattr~="myval"]').attr('href','http://www.google.se');
认为这是解释它的最简单方法。
答案 0 :(得分:1)
PHP在许多非常重要的方面与jQuery不同,但回答你的问题:
$domelement->setAttribute("href", "http://www.google.se");
您可能需要咨询documentation。