http://businessuites.forumatic.com/feed.php
对此有什么想法吗?(feeds/php 是与加载主文件的位置相关的文件夹)
// simple rss/atom feed reader
require_once('feeds/php/autoloader.php');
// Single feed
$feed = new SimplePie();
$feed->set_feed_url('http://businessuites.forumatic.com/feed.php');
$feed->enable_order_by_date(false);
$feed->set_cache_location($cachepath . '/cache');
$feed->init();
$feed->handle_content_type();
foreach ($feed->get_items(0, 5) as $item):
?>
<div class="item">
<h2>xxx<a href="<?php echo $item->get_permalink(); ?>"><?php echo $item->get_title(); ?></a></h2>
<p><?php echo $item->get_description(); ?></p>
<p><small>Posted on <?php echo $item->get_date('j F Y | g:i a'); ?></small></p>
</div>
<?php endforeach; ?>