如何使用simple_html_dom.php获取rss feed

时间:2012-03-30 23:41:36

标签: dom rss simple-html-dom

如何使用simple_html_dom.php获取rss feed(标题,链接和描述标签)。我实际上使用simple_html_dom.php分别获取了title,link和descritpion,但我不能一起获取它。我使用此代码分别获取了标签。

    foreach($html->find('title') as $element) 
           echo $element->plaintext . '<br>';

但实际上我想这样做(此代码不起作用,synthax错误)

 foreach(($html->find('title') as $element_1)&&$html->find('link') as $element_2)&&$html->find('description') as $element_3)) 
{
           echo $element_1->plaintext . '<br>';
echo $element_2->plaintext . '<br>';
echo $element_3->plaintext . '<br>';
}

你对此有任何想法。

感谢您的帮助

0 个答案:

没有答案