gpt4 book ai didi

PHP DOMDocument 用 div id 替换内容

转载 作者:行者123 更新时间:2023-12-04 04:45:25 25 4
gpt4 key购买 nike

我正在尝试像 jQuery .html() 一样替换 div 的内容。这是我到目前为止所做的:

$html = "
<html>
<body>
<div id="main">
<div id="text">
<p>This is some text</p>
</div>
</div>
</body>
</html>
";

$doc = new DOMDocument();
$doc->loadHTML($html);
// change div id "text" contents
// $("#text").html("<p>This is some new text</p>");
echo $doc->saveHTML();
任何帮助将不胜感激!谢谢。

最佳答案

你可以使用下面的代码,你只需要改变nodeValue

$doc->loadHTML($html);
$doc->documentGetElementById('text')->nodeValue = "<p>This is some new text</p>";
echo $doc->saveHTML();

关于PHP DOMDocument 用 div id 替换内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18283721/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com