我正在尝试做这样的事情(其中 $doc 是一个 DOMDocument)
$link_found = $doc->getElementsByTagName('a');
foreach ($link_found as $idx => $link) {
$link->setAttribute('href', "/test.php?t=1&q=2" ) ;
}
一切正常,但现在我得到了href
"/test.php?t=1&q=2"
我需要文字&
,而不是编码&
我需要
"/test.php?t=1&q=2"
像一个普通的查询字符串