gpt4 book ai didi

php - 访问 xml 对象

转载 作者:数据小太阳 更新时间:2023-10-29 02:34:15 25 4
gpt4 key购买 nike

我正在使用 YouTube API。我从 API 得到以下结果:

SimpleXMLElement Object
(
[@attributes] => Array
(
[rel] => alternate
[href] => http://www.youtube.com/watch?v=blabla
)

)

我对这个对象感到困惑。我想访问 @attributes。我该怎么做?

最佳答案

print_r 输出的 @attributes 部分只是可以通过 $obj['attrname'] 访问的元素的属性。

<?php
$obj = new SimpleXMLElement('<foo rel="alternate" href="http://www.youtube.com/watch?v=blabla" />');
print_r($obj); // to verify that the sample data fits your actual data

echo $obj['rel'], ' | ', $obj['href'];

prints

SimpleXMLElement Object
(
[@attributes] => Array
(
[rel] => alternate
[href] => http://www.youtube.com/watch?v=blabla
)

)
alternate | http://www.youtube.com/watch?v=blabla

另见 Example #5 Using attributes在 SimpleXML 文档中。

关于php - 访问 xml 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35055603/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com