DOMDocument::save()函數是PHP中的一個內置函數,用於從DOM表示形式創建XML文檔。從頭開始創建新的dom文檔後使用此函數。
用法:
int DOMDocument::save( string $filename, int $options = 0 )
參數:該函數接受上述和以下描述的兩個參數:
- $filename:此參數保存保存XML文檔的路徑。
- $options:此參數包含其他選項。當前,此參數僅支持LIBXML_NOEMPTYTAG。
返回值:該函數返回成功寫入或失敗寫入FALSE的字節數。
以下示例程序旨在說明PHP中的DOMDocument::save()函數:
示例1:
<?php
// Create a new DOMDocument
$domDocument = new DOMDocument('1.0', 'iso-8859-1');
// Set the formatOutput to true
$domDocument->formatOutput = true;
// Create an element
$domElement = $domDocument->createElement('organization', 'GeeksforGeeks');
// Append element to the document
$domDocument->appendChild($domElement);
// Save the XML document
$domDocument->save("abcd.xml");
echo "File saved successfully";
?>
輸出:
File saved successfully
保存文件abcd.xml的內容:
<?xml version="1.0" encoding="iso-8859-1"?> <organization>GeeksforGeeks</organization>
示例2:
<?php
// Create a new DOMDocument
$domDocument = new DOMDocument('1.0', 'iso-8859-1');
// Create an element
$domElement1 = $domDocument->createElement('organization');
$domElement2 = $domDocument->createElement('name', 'GeeksforGeeks');
$domElement3 = $domDocument->createElement('address', 'Noida');
$domElement4 = $domDocument->createElement('email', 'abc@geeksforgeeks.org');
// Append element to the document
$domDocument->appendChild($domElement1);
$domElement1->appendChild($domElement2);
$domElement1->appendChild($domElement3);
$domElement1->appendChild($domElement4);
// Save the XML file
$domDocument->save("g4g.xml");
echo "File saved successfully";
?>
輸出:
File saved successfully
保存文件g4g.xml的內容:
<?xml version="1.0" encoding="iso-8859-1"?> <organization> <name>GeeksforGeeks</name> <address>Noida</address> <email>abc@geeksforgeeks.org</email> </organization>
參考: https://www.php.net/manual/en/domdocument.save.php
相關用法
- PHP DOMDocument createCDATASection()用法及代碼示例
- PHP DOMDocument createAttribute()用法及代碼示例
- PHP DOMDocument createEntityReference()用法及代碼示例
- PHP DOMDocument saveHTML()用法及代碼示例
- PHP DOMDocument createProcessingInstruction()用法及代碼示例
- PHP DOMDocument loadXML()用法及代碼示例
- PHP DOMDocument saveHTMLFile()用法及代碼示例
- PHP DOMDocument createComment()用法及代碼示例
- PHP DOMDocument createElement()用法及代碼示例
- PHP DOMDocument __construct()用法及代碼示例
- PHP DOMDocument getElementsByTagName()用法及代碼示例
- PHP DOMDocument normalizeDocument()用法及代碼示例
- PHP DOMDocument load()用法及代碼示例
- PHP DOMDocument loadHTMLFile()用法及代碼示例
- PHP DOMDocument importNode()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | DOMDocument save() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。