我正在创建一个PHP脚本,它获取许多RSS并在按日期排序的页面上显示它们。我的问题是我需要显示博客的名称及其链接,但它们在结构的更高级别(如下所示)我获得帖子的标题,链接,内容,图像等。
我的问题是如何在不使用帖子的情况下轻松添加博客的标题和链接,也可以在帖子的链接中获取信息?
rss结构
<rss><chanell><title><link><other info for the blog><item>here goes the elements of the post</item><item>and so on</item>
和代码的主要部分
foreach ($feeds as $feed) {
$xml = simplexml_load_file($feed);
$entries = array_merge($entries, $xml->xpath('/rss/channel//item'));
}
.
.
.
foreach ($entries as $entry) {
echo "the title of the blog and the link"
echo $entry->title; //this is the title of the item
}