PHP利用RSS订阅别处稿子
程序员文章站
2022-05-22 16:09:44
...
PHP利用RSS订阅别处文章
这篇文章是接上篇利用PHP操作XML文件的。RSS是基于XML的一种形式,它的具体规范如下(我们以截取的新浪RSS订阅频道的格式来看):
输入:http://rss.sina.com.cn/news/world/focus15.xml 查看页面源码就可以看到RSS的结构:
http://news.sina.com.cn/world http://www.sinaimg.cn/home/deco/2009/0330/logo_home_news.gif http://news.sina.com.cn/491/2008/0827/1.html zh-cn WWW.SINA.COM.CN 5 Sat, 22 Dec 2012 05:32:05 GMT http://go.rss.sina.com.cn/redirect.php?url=http://news.sina.com.cn/w/2012-12-22/120825871683.shtml WWW.SINA.COM.CN http://go.rss.sina.com.cn/redirect.php?url=http://news.sina.com.cn/w/2012-12-22/120825871683.shtml Sat, 22 Dec 2012 04:08:09 GMT
具体规范信息是代表什么意思,根据标签的内容我们就可以很容易的知道,下面我们写一个rss.php来读取这个xml,从而获取这上面的文章:
XML The example of RSS
-
channel->item as $item)
{
print("
- "); print(""); print($item->title); print(""); print(" "); } ?>
注意这个函数:simplexml_load_file() ; 它既可以读本地的xml文件,也可以读网络上的xml。
运行结果:
Ok, That's all .... 天道酬勤!!
相关文章
相关视频