我想解析一个xml,但它给了我一个空白输出。
我的代码:
$url = 'http://feeds.news.com.au/public/rss/2.0/fs_breaking_news_13.xml';
$xml = simplexml_load_file($url);
$title = $xml->item[1]->title;
$ title,给出一个空白输出。
Plz帮助。
谢谢 Zeeshan
答案 0 :(得分:2)
从文件中看起来您没有看到这些项目位于名为<channel>
$title = (string) $xml->channel->item[1]->title;