私はこのようなことをしようとしています($ 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"
一般的なクエリ文字列のように