3
我正在使用YouTube API。我得到了以下API的結果:訪問xml對象
SimpleXMLElement Object
(
[@attributes] => Array
(
[rel] => alternate
[href] => http://www.youtube.com/watch?v=blabla
)
)
我很困惑這個對象。我想訪問@attributes
。我該怎麼做?
var_dump($ xml - > {'@ attributes'}); $ xml是你的變量,你保存xml – devpro
你不能只是谷歌這個? ['php simplexml get attributes'](https://www.google.com.ph/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=php%20simplexml%20get%20attribute) – Ghost
@Ghost我得到了這個$ xml-> attributes() - > href。謝謝 –