如何从RSS网址获取完整内容?

时间:2014-01-27 07:16:26

标签: php wordpress rss

我正在开发一个RSS fetcher API,它可以从RSS URL获取完整的RSS内容。我搜索了很多,但我无法使它工作。现在我的API只从RSS提要URL获取短内容(描述)。

我使用的代码:

 $rss = fetch_feed($entry->rss_link);
    $number_of_post=2;
    $iCount=0;
    foreach ($rss->get_items() as $item)
    {
        $content= $item->get_description();
        if($entry->remove_link){
           $content=strip_tags($content, '<p><div><i><b><u><img>');
        }
        $iCount++;
        $sfp_page = array(
            'post_title' => $item->get_title(),
            'post_status' => 'publish',
            'post_content' =>$content,
            'post_type' => 'sfp_forum',
            'post_author' => $entry->author_id,
            'post_date' => current_time('mysql')
        );
        $rss_id = wp_insert_post($sfp_page);

    }

$content没有完整的内容。

有什么建议吗?

1 个答案:

答案 0 :(得分:1)

您可能需要执行以下操作,因为您在每次迭代时都会覆盖$content,因此您只能获得最后一项。

$rss = fetch_feed($entry->rss_link);
$number_of_post=2;
$iCount=0;
$content = array();
foreach ($rss->get_items() as $item){
    $content[$iCount] = $item->get_description();
    if($entry->remove_link){
       $content[$iCount] = strip_tags($content[$iCount], '<p><div><i><b><u><img>');
    }
    $iCount++;
}
var_dump($content);