當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。