我目前正在显示几个 RSS 提要,但它会导致网站加载缓慢,并且如果提要未加载,有时会无法正确加载。我正在使用 PHP 来显示提要,其中包含我在下面使用的代码示例:
<?php
error_reporting(0);
$rss = new DOMDocument();
$rss->load('http://www1.skysports.com/feeds/11677/news.xml');
$feed = array();
foreach ($rss->getElementsByTagName('item') as $node) {
$item = array (
'title' => $node->getElementsByTagName('title')->item(0)->nodeValue,
'link' => $node->getElementsByTagName('link')->item(0)->nodeValue,
'date' => $node->getElementsByTagName('pubDate')->item(0)->nodeValue,
);
array_push($feed, $item);
}
$limit = 2;
for($x=0;$x<$limit;$x++) {
$title = str_replace(' & ', ' & ', $feed[$x]['title']);
$link = $feed[$x]['link'];
$date = date('l F d, Y', strtotime($feed[$x]['date']));
echo '<div id="wholefeed"><div id="feed"><img src="img/SkySports.png" alt="logo" class="logo"><div id="rsstext"><a target="_blank" href="'.$link.'" title="'.$title.' ">'.$title.'</a></div></a></div></div>';
}
?>
为了帮助解决这个问题,我想将它存储在缓存中并让它每隔一小时左右检查一次。我该怎么做呢?
谢谢。