RSS <lastBuildDate> 元素
<lastBuildDate> 元素定义 feed 内容的最后修改日期
<lastBuildDate> 和 <pubDate> 一样,语法格式也一模一样
info: 不建议设置此 lastBuildDate
作为 RSS 订阅器开发者,你应该
忽略 <lastBuildDate> 而是根据站点的更新情况自己设定每天应该什么时间段更新
作为 RSS 内容提供者,你应该
忽略 <lastBuildDate> 除非你明确知道某些时间点站点不会更新,比如 周六周日
语法
<lastBuildDate>Fri, 01 Sep 17 09:22:48 +0800</lastBuildDate>
RSS2.0 标准下的时间格式要求比较严格,必须遵守 rfc822
标准
比如 Fri, 01 Sep 17 09:22:48 +0800
这样的格式
关于时间格式的更多内容,可以查看我们的 日期与时间 教程
实例
<?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0"> <channel> <title>简单编程首页</title> <link>https://www.twle.cn</link> <lastBuildDate>Fri, 01 Sep 17 09:22:48 +0800</lastBuildDate> <description>简单教程[www.twle.cn]以编程开发所需掌握的语言和知识入手...</description> <item> <title>HTML 基础教程</title> <link>https://www.twle.cn/l/yufei/html/html-basic-index.html</link> <description>HTML 基础教程</description> </item> <item> <title>Python2 基础教程</title> <link>https://www.twle.cn/l/yufei/python27/python27-basic-index.html</link> <description>Python2 基础教程</description> </item> </channel> </rss>