首頁 > php教程 > php手册 > 主體

MagpieRSS:PHP的Rss解析器

WBOY
發布: 2016-06-21 09:06:47
原創
1202 人瀏覽過

rss

MagpieRSS是一个很好的Rss解析类,它完全支持RSS 0.9 - 1.0, 部分支持 RSS 2.0。

* supports RSS 0.9 - 1.0, with limited RSS 2.0 support
* supports namespaces, and modules, including mod_content and mod_event
* open minded [1]
* simple, functional interface, to object oriented backend parser
* automatic caching of parsed RSS objects makes its easy to integrate
* supports conditional GET with Last-Modified, and ETag
* uses constants for easy override of default behaviour
* heavily commented

PHP新闻聚合工具lilina使用的Rss解析器就是MagpieRSS。

这个东西使用起来很简单,下边是官方的一个例子:

 

require_once(rss_fetch.inc);
$url = $_GET['url'];
$rss = fetch_rss( $url ); 
 

echo

"

"
""Channel Title: " . $rss->channel['title'] . " ;
echo ";
foreach ($rss->items as $item) {
$href = $item['link'];
$title = $item['title'];
echo "
$title" ;
}
echo "; 
 
 


 



相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!