>  기사  >  백엔드 개발  >  php RSS格式问题

php RSS格式问题

WBOY
WBOY원래의
2016-06-06 20:19:441308검색

已经解决了,不过不太清楚细节

最近需要将内容输出成RSS,碰到问题是,输出了标题和还有摘要还有内容,但是在网易云阅读里,原文内容读不出来,只能显示标题、摘要、时间这些。

具体输出的XML格式如下:

<code><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
<channel>
<title>

</title>
<description>

</description>
<link>网址
<language>zh_CN</language>
<pubdate>2016-01-21 14:23:57</pubdate>
<lastbuilddate>2016-01-21 14:23:57</lastbuilddate>
<generator>YBlog RSS Generator</generator>
<ttl>5</ttl>
<image>
<title>

</title>
<link>RSS标题网址
<url>http://www.xxxxx.com/images/logo_rss.png</url>
</image>
<item>
<title>

</title>
<link>
http://www.xxx.com/1231

<description>

</description>
<pubdate>2016-01-21 12:14:28</pubdate>
<encoded>

</encoded>
</item></channel></rss></code>

回复内容:

已经解决了,不过不太清楚细节

最近需要将内容输出成RSS,碰到问题是,输出了标题和还有摘要还有内容,但是在网易云阅读里,原文内容读不出来,只能显示标题、摘要、时间这些。

具体输出的XML格式如下:

<code><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
<channel>
<title>

</title>
<description>

</description>
<link>网址
<language>zh_CN</language>
<pubdate>2016-01-21 14:23:57</pubdate>
<lastbuilddate>2016-01-21 14:23:57</lastbuilddate>
<generator>YBlog RSS Generator</generator>
<ttl>5</ttl>
<image>
<title>

</title>
<link>RSS标题网址
<url>http://www.xxxxx.com/images/logo_rss.png</url>
</image>
<item>
<title>

</title>
<link>
http://www.xxx.com/1231

<description>

</description>
<pubdate>2016-01-21 12:14:28</pubdate>
<encoded>

</encoded>
</item></channel></rss></code>

已经解决了,在头部加入 xmlns这些就可以了。但是具体含义不太清楚。

<code><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/">  </rss></code>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.