php 解析 xml 时出现问题
我想解析 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 给出空白输出。
请帮忙。
谢谢 泽山
I want to parse a xml, but it giving me a blank output.
My code:
$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;
The $title, gives a blank output.
Plz help.
Thank you
Zeeshan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从文件中看,您似乎没有看到这些项目位于名为
的节点内From the file, it looks like you didn't see that the items are inside of a node named
<channel>