我正在使用 PHP 制作 RSS 提要阅读器,并且我获得了所有提要内容,但我无法确定目标 RSS 值的热点,因此我可以回显它们、设置它们的样式等!
到目前为止我的脚本:
foreach($feed_list as $from => $feeds) {
$xml = simplexml_load_file($feeds);
echo "<pre>";
print_r($xml);
echo "</pre>";
}
我正在使用 PHP 制作 RSS 提要阅读器,并且我获得了所有提要内容,但我无法确定目标 RSS 值的热点,因此我可以回显它们、设置它们的样式等!
到目前为止我的脚本:
foreach($feed_list as $from => $feeds) {
$xml = simplexml_load_file($feeds);
echo "<pre>";
print_r($xml);
echo "</pre>";
}
抱歉麻烦,但我发现了如何
<?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";
}
?>
多亏了这个:) - 感谢堆栈溢出 :)
您需要遍历$xml
返回的对象并获取每个节点的值...查看http://www.php.net/manual/en/class.simplexmlelement.php了解更多信息。