如何使用PHP DOM函数更改元素内容?

深入...我已经查询了我的元素,修改了属性,现在想更改其内容,我该怎么做?

最佳答案

如果要设置元素的文本内容,请设置 nodeValue 属性:

$el = $dom->getElementById('foo');
$el->nodeValue = 'hello world';

请注意,这会自动转义<>,因此您不能插入这样的HTML。为此,您必须执行类似 DOMDocument::createDocumentFragment 的操作:
$frag = $dom->createDocumentFragment();
$frag->appendXML('<h1>foo</h1>');
$el->appendChild($frag);

09-11 18:21