溫馨提示×

php中xml文件怎么創(chuàng)建

PHP
小億
96
2024-03-29 18:23:56
欄目: 編程語言

在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>

0