-1

尝试在使用 Dreamweaver 和 PHP 进行开发的网站上工作。

在直播现场,突然发现这个错误:

This XML file does not appear to have any style information associated with it. The document tree is shown below.
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
<channel>
<title>
ABCDED
</title>
<cf:treatAs xmlns:cf="http://www.microsoft.com/schemas/rss/core/2005">list</cf:treatAs>
<link>http://events.sjsu.edu/default.aspx</link>
<description>RSS Feed ABCD Events Calendar</description>
</channel>
</rss>
4

1 回答 1

-1

实际上,是否正在将 XML 文件回显到 PHP 页面中?

$xml = simplexml_load_file('URL');
  foreach ($xml->channel->channel as $value){ 
    $var1 = $value->link;
    $var2 = $value->description;
} 
echo $var1."<br>".$var2;

在 php.ini 中显示它。

希望它有效!

于 2013-05-14T16:51:28.977 回答