哪种更好更容易使用? 我一直试图通过php或js保存和替换(如果需要)XML中的一些数据,比如玩家在游戏中的得分(来自AS3应用程序)。
<?xml version="1.0" encoding="utf-8"?>
<scores>
<game id="1">
<slot top="1">
<name>joe</name>
<score>125688</score>
</slot>
<slot top="2">
<name>john</name>
<score>10943</score>
</slot>
<slot top="3">
<name>yuri</name>
<score>9235</score>
</slot>
</game>
</scores>
你有什么建议改变,例如,通过调用网址并从AS3应用程序发布一些数据来改变Yuri的分数?