当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP DOMDocumentFragment appendXML()用法及代码示例


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

用法:

bool DOMDocumentFragment::appendXML( string $data )

参数:该函数接受单个参数$data,该参数保存要附加的XML。


返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。

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

程序1:

<?php 
  
// Create a new DOMDocument 
$doc = new DOMDocument; 
  
// Load the XML 
$doc->loadXML("<root/>"); 
  
// Create a Document Fragment 
$f = $doc->createDocumentFragment(); 
  
// Append the XML to fragment 
$f->appendXML( 
  "<h1>Heading 1</h1><strong>Strong text</strong>"); 
  
// Append the fragment to document 
$doc->documentElement->appendChild($f); 
  
// Save the XML 
echo $doc->saveXML();  
?>

输出:

<?xml version="1.0"?>
<root><h1>Heading 1</h1><strong>Strong text</strong></root>

程序2:

<?php 
  
// Create a new DOMDocument 
$doc = new DOMDocument; 
  
// Load the XML 
$doc->loadXML("<root/>"); 
  
// Create a Document Fragment 
$f = $doc->createDocumentFragment(); 
  
// Append the XML to fragment 
$f->appendXML("<h1 style=\"color:red\"> Red </h1>"); 
$f->appendXML("<h1 style=\"color:green\"> Green </h1>"); 
$f->appendXML("<h1 style=\"color:blue\"> Blue </h1>"); 
  
// Append the fragment to document 
$doc->documentElement->appendChild($f); 
  
// Save the XML 
echo $doc->saveXML();  
?>

输出:

<?xml version="1.0"?>
<root>
    <h1 style="color:red"> Red </h1>
    <h1 style="color:green"> Green </h1>
    <h1 style="color:blue"> Blue </h1>
</root>

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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMDocumentFragment appendXML() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。