我有一个 iphone 应用程序,它解析标准 rss 提要并将其显示在桌子上。但是,我从客户端获得了提要,但应用程序中的解析器无法获取节点并解析数据,因为它不是标准的 rss 提要。
他们给我的布局如下:
<rss version="0.92">
<channel>
<title>Feed</title>
<link>http://google.com</link>
<description>
Description here
</description>
<lastBuildDate>30 June +0100</lastBuildDate>
<language>en</language>
<event>
<eventID>123</eventID>
<name>Name here</name>
<date>2012-06-29</date>
<time>21:00</time>
<category>Arts</category>
<info>
Info here
</info>
</event>
<event>
<eventID>223</eventID>
<name>Name here</name>
<date>2012-06-30</date>
<time>22:00</time>
<category>Dance</category>
<info>
Info here
</info>
</event>
</channel>
</rss>
有没有办法使用 XSLT 或 PHP 脚本将此 xml 文件重组为标准 rss 提要布局?标准的 RSS 提要布局如下:
<rss>
<channel>
<item>
<title>
<![CDATA[ Title here ]]>
</title>
<link>
http://www.theatre.com/
</link>
<guid>
http://www.theatre.com
</guid>
<description>
<p> Description </p>
</description>
<dc:subject>
<![CDATA[ ]]>
</dc:subject>
<dc:date>2013-02-01T18:00:04+00:00</dc:date>
</item>
</channel>
</rss>