使用php修改xml文档
我有一个 xml 文件“Machine.xml”,它包含:
<Parameter name="host" value="localhost"/>
<Parameter name="port" value="5900"/>
我想使用 php 脚本更改这两个参数值...我该怎么做? 我的意思是我希望脚本将主机的值更改为: value="7.3.4.5" 和 将端口值更改为:value="3124",然后再次保存这些更改的 xml 文件。
我尝试了几种方法,但没有一个有效,
谢谢:)
i have an xml file "Machine.xml" it contains:
<Parameter name="host" value="localhost"/>
<Parameter name="port" value="5900"/>
i would like to change both parameters values using a php script... how can i do that?
i mean i want the script to change host's value for example to : value="7.3.4.5" and
port value to: value="3124" AND then save the xml file again with these changes.
i tried several ways, but none worked
thx a lot:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题以前已经以多种形式被问过。搜索 SO 以了解如何使用 DOM 和以下 XPath
以及
This question has been asked in many variations before. Search through SO to find out how to do it with DOM and the following XPath
and