I want to change the value of the attribute of a tag with PHP DOMDocument.
For example, say we have this line of HTML:
<a href="http://foo.bar/">Click here</a>
I load the above code in PHP as follows:
$dom = new domDocument;
$dom->loadHTML('<a href="http://foo.bar/">Click here</a>');
I want to change the "href" value to "http://google.com/" using the DOMDocument extension of PHP. Is this possible?
Thanks for the help as always!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…