如何在 php simplexml 中通过名称获取节点属性值?
我的基本 xml 结构:
<?xml version="1.0" encoding="utf-8"?>
<users>
<user userId="1" userName="nameHere" userAge="34"></user>
</users>
然后:
如何通过名称获取特殊属性的值?就像:
variable value = user.attr('userAge')
非常感谢!!
my basic xml structure:
<?xml version="1.0" encoding="utf-8"?>
<users>
<user userId="1" userName="nameHere" userAge="34"></user>
</users>
and then:
How can I get the special attribute's value by its name? Just like :
variable value = user.attr('userAge')
Thank you very much!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
attributes()
方法,例如
You can make use on
attributes()
method,such as