如何使用php编辑xml文件中的特定值

时间:2012-02-26 15:21:28

标签: php xml

  

可能重复:
  A simple program to CRUD node and node values of xml file

您好我有xml文件,其中包含以下属性

<user>
 <info>
  <id>XXXXXX</id>
 </info>
</user>

我希望每次加载页面时都替换用户ID,然后使用新的id保存文件,从用户获取id的变量是$ uid。

1 个答案:

答案 0 :(得分:1)

使用SimpleXML

  • 使用$xml = simplexml_load_file('filename')
  • 加载文件
  • 操纵$ xml
  • 中的值
  • 保存$xml->asXML();
  • 的输出