PHP脚本:将任何网页转换为RSS提要xml

时间:2017-05-22 14:17:32

标签: php xml

有人知道如何在脚本中编写php以将网站的新闻转换为RSS源。例如,feed43.com,试一试了解机制。谢谢。

我尝试编写此代码,但我没有能力。请帮助我,这并不难。

function example_extract_link_feedrss($url){
  $link = file_get_contents($url);
   $str = trim(preg_replace('/\s+/', ' ', $str));
    preg_match('/\<h3\>"\>(.*)/i',$str,$titleNoticeRSS);
    return $titleNoticeRSS[1];
  }
}

1 个答案:

答案 0 :(得分:0)

不要使用正则表达式来解析HTML!请看这里: RegEx match open tags except XHTML self-contained tags

相反,使用DOM类: http://php.net/manual/en/book.dom.php