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

前端之家收集整理的这篇文章主要介绍了如何将源html附加到PHP中的DOMElement?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法将源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();
原文链接:https://www.f2er.com/html/224250.html

猜你在找的HTML相关文章