获取 simplexmlelement 对象 php 的值

发布于 2024-12-07 17:31:31 字数 582 浏览 1 评论 0原文

我尝试了太多的方法来从下面的代码中读取 [label] 的值:

    Array ( [0] => 
    SimpleXMLElement Object
    (
       [id] => x 
       [published] => 2011
       [category] =>
     Array ( [0] => 
      SimpleXMLElement Object 
      ( 
      [@attributes] => 
        Array (
        [scheme] => y 
        [term] => t 
        ) )
        [1] => SimpleXMLElement Object 
        ( [@attributes] => 
        Array (
        [scheme] => y2 
        [term] => Film
        [label] => Film & Animation 
        ) )

它以数字数组开头。

I try too many thing to read the value of the [label] from the code below :

    Array ( [0] => 
    SimpleXMLElement Object
    (
       [id] => x 
       [published] => 2011
       [category] =>
     Array ( [0] => 
      SimpleXMLElement Object 
      ( 
      [@attributes] => 
        Array (
        [scheme] => y 
        [term] => t 
        ) )
        [1] => SimpleXMLElement Object 
        ( [@attributes] => 
        Array (
        [scheme] => y2 
        [term] => Film
        [label] => Film & Animation 
        ) )

it start with numeric array.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

在梵高的星空下 2024-12-14 17:31:31

你的答案是不是很简单:

$data->category['label']?

下次看 simplexml 文档,所有属性都可以从数组访问,所有子节点都可以通过对象属性运算符访问。

如果您有很多类别,那么您将在“category[0]”处有一个数组

Isn't your answer as simple as:

$data->category['label']?

See simplexml documentation next time, all attributes are accessible from an array, and all subnodes are accessible through the object property operator.

If you have many categories, then you will have an array at "category[0]"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文