我正在尝试使用以下 php 编码从 url 检索 RSS 提要数据,它返回我所需的数据,如项目标题、项目描述、项目日期等。但是当我尝试检索以下 URL 的 rss 提要数据时相同的 php 编码它不返回任何数据。我们不知道是什么阻止我们从以下博客中检索数据。
请帮助我们解决此问题,我们可以从以下博客网址检索 rss 提要数据。
[1] : http://kuwait-music.com
[2] : www.w6n.cc
<?php
require_once "simplepie.inc";
$mfeed = [1] : http://kuwait-music.com;
$feedinstance = new SimplePie();
$feedinstance-->set_feed_url($mfeed);
$feedinstance-->init();
$feedinstance-->handle_content_type();
echo $feedinstance-->get_permalink();
echo $feedinstance-->get_title();
echo $feedinstance-->get_description();
$count = 0;
foreach($feedinstance-->get_items() as $item)
{
echo $item-->get_permalink();
echo $item-->get_title();
echo $item-->get_description();
echo $item-->get_date();
$count++;
if ($count == 1) break;
}
?>