我正在尝试使用Simplepie过滤与正则表达式关键字过滤器匹配的项目的Feed,然后使用这些项目创建另一个Feed。但是,我无法将项目从$ matches数组移动到rss块中。我仍然是PHP的新手,所以也许我错过了一些明显的东西,但我会很感激帮助。
<?php
$feed = new SimplePie();
$feed->set_feed_url('feed://stackoverflow.com/feeds');
$feed->init();
$feed->set_cache_duration (3600);
$feed->set_timeout(30);
$feed->handle_content_type();
$countItem = 0;
foreach ($feed->get_items() as $item):
$checktitle = $item->get_title();
//Regex keyword filter
$pattern = '/php/i';
//If the there is a keyword match, store in $matches array
if (preg_match($pattern, $checktitle)) {
$matches[$countItem]= $item;
$countItem++;
}
endforeach
?>
<?php if ($success) {
$itemlimit=0;
foreach($matches as $item) {
if ($itemlimit==20) { break; }
?>
//rss block
<item>
<title><?php $item->get_title()); ?></title>
<link><?php echo $item->get_permalink(); ?></link>
<pubDate><?php echo $item->get_date();></pubDate>
<description><![CDATA[<?php echo $item->get_description(); ?>]]></description>
<content:encoded><![CDATA[<?php $item->get_content(); ?>]]></content:encoded>
</item>
<?
$itemlimit = $itemlimit + 1;
}
}
?>
答案 0 :(得分:0)
你是否正确设置了标题,doctype,所有这些东西?您可能希望使用框架或XML / RSS编写器来构建响应,这比手动构建响应要容易得多。
答案 1 :(得分:0)
你的成功是否被设置在某个地方? (你确实问过你是否遗漏了一些明显的东西!:D)