RSS
RSS是Really Simple syndication(真正的简单联合),在一种描述和网站内容同步的格式,是xml应用之一
(2)把离散的信息聚合到一个平台
RSS2.0的标准
RSS是一个xml语言。
RSS的子元素是<channel>频道元素。
频道的必选子元素是<item>、<title>、<link>、<description>
<item>的必选子元素<title>、<link>、<description>
<?PHP echo '<?xml version="1.0" encoding="utf-8"?>'; echo <<<RSS <RSS version="2.0"> <channel> <title>传智播客</title> <link>http://www.itcast.cn/</link> <description>传智播客</description> <item> <title>课程中心</title> <link>http://www.itcast.cn/course.shtml</link> <description>课程中心</description> </item> <item> <title>传智专修学院</title> <link>http://www.czxy.com/</link> <description>传智专修学院</description> </item> </channel> </RSS> RSS; ?>
执行结果:
原文链接:https://www.f2er.com/xml/293985.html