我的XML(hashes.xml)是的SimpleXML不會增加子女或屬性爲xml
<?xml version="1.0" encoding="UTF-8" ?>
<root>
<updated></updated>
<players>
<playernum>1</playernum>
<!--Demonstration of syntax, using the value 127.0.0.1 and the first second of December 22, 2012 with salt of 000 -->
<player id="7bea7450391c9d89c65af7a46966e45066105fa4">
<game id="1">
<color>red</color>
</game>
<game id="2">
<color>purple</color>
</game>
</player>
</players>
</root>
我的PHP是
<?php
$hash = $_GET["hash"];
$xml = simplexml_load_file("hashes.xml");
$xml->players->addChild("player", " ");
?>
但是當我運行PHP時,不更改xml文件。我願意使用任何方法,即使它不是simplexml。
你實際上是否用類似'file_put_contents('hashes.xml',$ xml-> asXml())''的方式將XML保存回去? – prodigitalson
我沒有。這可能是我的問題。編輯:不。還是行不通。 – quadthagoras