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


PHP DOMDocument saveXML()用法及代碼示例


DOMDocument::saveXML()函數是PHP中的一個內置函數,用於從DOM表示形式創建XML文檔。從頭開始構建新的dom文檔後使用此函數。

用法:

string DOMDocument::saveXML( DOMNode $node, int $options = 0 )

參數:該函數接受上述和以下描述的兩個參數:


  • $node:此參數僅用於沒有XML聲明的特定節點的輸出,而不是整個文檔的輸出。
  • $options:此參數添加其他選項。當前,此參數僅支持LIBXML_NOEMPTYTAG。

返回值:如果成功,此函數返回XML文檔;如果失敗,則返回FALSE。

以下示例程序旨在說明PHP中的DOMDocument::saveXML()函數:

示例1:

<?php 
  
// Create a new DOMDocument 
$domDocument = new DOMDocument('1.0', 'iso-8859-1'); 
  
// Use createTextNode() function to create a text node 
$domTN = $domDocument->createTextNode('GeeksforGeeks'); 
  
// Append element to the document 
$domDocument->appendChild($domTN); 
  
// Use saveXML() function to save the XML document 
echo $domDocument->saveXML(); 
  
?>
輸出:
<?xml version="1.0" encoding="iso-8859-1"?>
GeeksforGeeks

示例2:

<?php 
  
// Create a new DOMDocument 
$domDocument = new DOMDocument('1.0', 'iso-8859-1'); 
  
// Use createElement() function to create an element node 
$domElement = $domDocument->createElement('organization', 
                                       'GeeksforGeeks'); 
  
// Append element to the document 
$domDocument->appendChild($domElement); 
  
// Use saveXML() function to create a XML document 
echo $domDocument->saveXML(); 
  
?>
輸出:
<?xml version="1.0" encoding="iso-8859-1"?>
<organization>GeeksforGeeks</organization>

參考: https://www.php.net/manual/en/domdocument.savexml.php



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | DOMDocument saveXML() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。