我需要用编辑器中的不同HTML内容替换下面元素的值:
<Text Token="Main heading" galleyId="1" type="multi"><p style="text-align: left"><span style="font-size:32.0pt">For all types of insurance, use a broker you can trust</span></p></Text>
我使用的是DomDocument
,但nodeValue
按预期更改了<
个字符并打破了HTML。
目前的代码段是:
$textnode = $xpath->query('//Text[@Token="Main heading"]')->item(0);
$textnode->nodeValue = $value;
有人可以推荐这样做的最好方法吗?