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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。