gpt4 book ai didi

php - 如何将源 html 附加到 PHP 中的 DOMElement?

转载 作者:太空狗 更新时间:2023-10-29 13:06:32 25 4
gpt4 key购买 nike

有没有办法将源 html 附加到 DOMElement 中?像这样:

$trElement->appendSource("<a href='?select_user=4'>Username</a>");

它会解析该片段然后附加它。

最佳答案

你在找

- DOMDocumentFragment::appendXML — Append raw XML data

手册中的示例:

$doc = new DOMDocument();
$doc->loadXML("<root/>");
$f = $doc->createDocumentFragment();
$f->appendXML("<foo>text</foo><bar>text2</bar>");
$doc->documentElement->appendChild($f);
echo $doc->saveXML();

关于php - 如何将源 html 附加到 PHP 中的 DOMElement?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4751437/

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