如何在 php simplexml 中通过名称获取节点属性值?

发布于 2024-10-03 20:43:47 字数 312 浏览 2 评论 0原文

我的基本 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

星光不落少年眉 2024-10-10 20:43:47

您可以使用 attributes() 方法,
例如

$xml = simplexml_load_string('<users>
  <user userId="1"  userName="nameHere" userAge="34"></user>
</users>');
$userAge = (int) $xml->user->attributes()->userAge;

You can make use on attributes() method,
such as

$xml = simplexml_load_string('<users>
  <user userId="1"  userName="nameHere" userAge="34"></user>
</users>');
$userAge = (int) $xml->user->attributes()->userAge;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文