在PHP中創(chuàng)建XML文件有多種方法,以下是其中的一種常用方法:
<?php
// 創(chuàng)建一個新的XML文檔
$doc = new DOMDocument();
// 創(chuàng)建根元素
$root = $doc->createElement("root");
$doc->appendChild($root);
// 創(chuàng)建子元素
$child = $doc->createElement("child");
$root->appendChild($child);
// 添加子元素的文本內容
$text = $doc->createTextNode("Hello, World!");
$child->appendChild($text);
// 保存XML文件
$doc->save("example.xml");
echo "XML文件創(chuàng)建成功";
?>
以上代碼會生成一個簡單的XML文件example.xml
,內容如下:
<root>
<child>Hello, World!</child>
</root>