1

我正在尝试使用 Simplepie 过滤与正则表达式关键字过滤器匹配的项目的提要,然后使用这些项目创建另一个提要。但是,我无法将项目从 $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;
    }
    }
    ?>
4

2 回答 2

0

您的 $success 是否设置在某个地方?(你确实问过你是否遗漏了一些明显的东西!:D)

于 2012-04-25T22:38:47.173 回答
0

您是否正确设置了标题、文档类型等所有内容?您可能想要使用框架或 XML/RSS 编写器来构建响应,这比手动构建它们要容易得多。

于 2012-04-25T20:09:19.693 回答