使用simplexml_load_string
如何以此格式从Feed中获取openSearch:itemsPerPage
值:
http://code.google.com/apis/youtube/2.0/developers_guide_protocol_understanding_video_feeds.html
答案 0 :(得分:0)
在SimpleXML中,您可以使用children('prefix',true)和attributes('prefix',true)函数来访问命名空间内容。
$xml = simplexml_load_string($string);
$itemsPerPage = (string)$xml->children('opensearch', true)->itemsPerPage;