1

我正在使用 PHP 制作 RSS 提要阅读器,并且我获得了所有提要内容,但我无法确定目标 RSS 值的热点,因此我可以回显它们、设置它们的样式等!

这是饲料

到目前为止我的脚本:

foreach($feed_list as $from => $feeds) {
    $xml = simplexml_load_file($feeds);

    echo "<pre>";
    print_r($xml);
    echo "</pre>";
}

代码执行后我把它弄出来

4

2 回答 2

2

抱歉麻烦,但我发现了如何

<?php
$rss = simplexml_load_file('http://www.riga.lv/rss/lv/PressRelease/');
?>
<h1><?php echo $rss->channel->title; ?></h1>
<ul>
<?php
foreach($rss->channel->item as $e) {
    echo "<li><a href=\"".$e->link['href']."\">";
    echo $e->title;     
    echo "</a></li>\n";
}    
?>

多亏了这个:) - 感谢堆栈溢出 :)

于 2012-04-19T05:35:33.353 回答
1

您需要遍历$xml返回的对象并获取每个节点的值...查看http://www.php.net/manual/en/class.simplexmlelement.php了解更多信息。

于 2012-04-18T11:01:49.417 回答