开发者

How to append source html to a DOMElement in PHP?

开发者 https://www.devze.com 2023-02-05 14:41 出处:网络
Is there a way of appending source html into a DOMEl开发者_JS百科ement? Something like this: $trElement->appendSource(\"<a href=\'?select_user=4\'>Username</a>\");

Is there a way of appending source html into a DOMEl开发者_JS百科ement? Something like this:

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

It would parse that fragment and then append it.


You are looking for

- DOMDocumentFragment::appendXML — Append raw XML data

Example from Manual:

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


If you don't have a reference to the document root in scope, you can always access it via the ownerDocument property of an arbitrary node:

$frag = $trElement->ownerDocument->createDocumentFragment();
$frag->appendXML("<a href='?select_user=4'>Username</a>");
$trElement->appendChild($frag);


Yes, you can do this with DOMDocument::createDocumentFragment:

$fragment = $dom->createDocumentFragment();
$fragment->appendXML('<a href="select_user=4">Username</a>');
$element->appendChild($fragment);

In this case, it would be simpler to do it with a normal createElement call:

$el = $dom->createElement('a', 'Username');
$el->setAttribute('href', 'select_user=4');
$element->appendChild($el);

In each case, $element is the DOM element to which you want to append your code.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号