📜  PHP | DOMDocumentFragment appendXML()函数

📅  最后修改于: 2022-05-13 01:56:42.849000             🧑  作者: Mango

PHP | DOMDocumentFragment appendXML()函数

DOMDocument::appendXML()函数是PHP中的一个内置函数,用于将原始 XML 数据附加到 DOMDocumentFragment。

句法:

bool DOMDocumentFragment::appendXML( string $data )

参数:此函数接受单个参数$data ,其中包含要附加的 XML。

返回值:此函数在成功时返回 TRUE,在失败时返回 FALSE。

下面给出的程序说明了PHP中的DOMDocument::appendXML()函数

方案一:

loadXML("");
  
// Create a Document Fragment
$f = $doc->createDocumentFragment();
  
// Append the XML to fragment
$f->appendXML(
  "

Heading 1

Strong text");    // Append the fragment to document $doc->documentElement->appendChild($f);    // Save the XML echo $doc->saveXML();  ?>

输出:


Heading 1

Strong text

方案二:

loadXML("");
  
// Create a Document Fragment
$f = $doc->createDocumentFragment();
  
// Append the XML to fragment
$f->appendXML("

Red

"); $f->appendXML("

Green

"); $f->appendXML("

Blue

");    // Append the fragment to document $doc->documentElement->appendChild($f);    // Save the XML echo $doc->saveXML();  ?>

输出:



    

Red

Green

Blue

参考: https://www. PHP.net/manual/en/domdocumentfragment.appendxml。 PHP