我只想在我的網站上顯示最新的5個Feed。
我使用下面的代碼來獲取RSS訂閱...可以將顯示任一組的幫助有限,飼料...謝謝你提前:)關於限制Rss Feed
代碼不正在使用
<?php
require_once('rss_fetch.inc');
$url = 'http://news.google.com/news?ned=us&topic=h&output=rss';
$rss = fetch_rss($url);
echo "Site: ", $rss->channel['title'], "<br>\n";
foreach ($rss->items as $item) {
$title = $item['title'];
$url = $item['link'];
$desc = $item['description'];
$category = $item['category'];
echo "<a href=$url>$title</a>$desc <br/>CATEGORY : $category <br/><br/> ";
}
?>
把'foreach'變成一個循環,使用一個計數器上升到5? – bdares