使用 Zend_Feed 在 Php 中通过 url 获取 Rss 版本
我使用 Zend Framework 读取 RSS 提要就像使用提要的 URL 实例化 Zend_Feed_Rss 对象一样简单:
$feed = new Zend_Feed_Rss('http://rss.exemple.com/feed');
echo $feed->title();
此方法不存在
echo $feed->version();
如何获取 Rss 的版本,例如 2.0 或 0.92 ?
I use Zend Framework to read an RSS feed is as simple as instantiating a Zend_Feed_Rss object with the URL of the feed :
$feed = new Zend_Feed_Rss('http://rss.exemple.com/feed');
echo $feed->title();
This method doesn't exists
echo $feed->version();
How I can get the version of Rss, like 2.0 or 0.92 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这当然不明显!
此示例适用于 RSS 2.0
您可能需要对原子等进行其他检查,但您现在可以了解如何访问根节点。
It's certainly not obvious!
This example works for RSS 2.0
You may need other checks for atom etc, but you can see how to access the root node now.