我只是在徘徊,是否可以从显示 RSS 提要的同一站点内的其他站点打开 RSS 提要链接?
例如:
我从天空体育获得 RSS 提要,并在我自己的网站上显示图像、标题和链接……当有人点击 RSS 提要的链接时,他们将被指向该新闻的天空体育页面。现在,我是否可以在我自己的网站中打开新闻页面而不是将用户/读者指向天空的网站?
我不知道,但也许使用 iframe?
这就是我获取 RSS 提要的方式:
<?php
$rss = simplexml_load_file('http://www.fifa.com/rss/index.xml');
$limit = 1; // Change this number to however many items you want to display
$counter = 1;
if($rss)
{
$items = $rss->channel->item;
}
?>
<?php
$rss = simplexml_load_file('http://www.skysports.com/rss/0,20514,12010,00.xml');
$limit = 1; // Change this number to however many items you want to display
$counter = 1;
if($rss)
{
$items = $rss->channel->item;
}
foreach ($rss->channel->item as $item) {
if($counter <= $limit) {
echo "<div style='border: solid #0C0 1px; width:150px; height:100px;'><img src=\"" . (string)$item->enclosure['url'][0] . "\" style='width:150px; height:100px;'></div>";
echo "<p>" . $item->description . "</p>";
$counter++;
}
}
?>