RSS是一种网页内容联合格式,是XML的一种,所有的RSS文档都遵循XML1.0规范。

具体示例:

<span style="font-family:Microsoft YaHei;font-size:18px;"><?xml version = "1.0" encoding = "utf-8" ?>  <rss version = "2.0" xmlns:wfw ="http://wellformedweb.org/CommentAPI/">         <channel>                <title>标题</title>                <link>链接地址</link>                <description>描述</description>                <language>描述语言</language>                <copyright>版本</copyright>                <pubdate>时间</pubdate>                <item>                       <title>日志标题</title>                    <link>日志的url访问地址</link>                       <author>日志的作者</author>                       <pubdate>日志的发布时间</pubdate>                       <description>日志的内容</description>                </item>         </channel>  </rss></span>

此时应该链接数据库,输出想要的结果。

Test.PHP

<span style="font-family:Microsoft YaHei;font-size:18px;"><?PHP         include("./conn.php");         class test{                public $title = '';                public $link = '';                public $description= '';                public $items = '';                public $template ='./test.xml';                public $dom = '';                public $rss = '';                public function__construct(){                       $this ->dom = new domDocument('1.0','utf-8');                       $this ->dom -> load($this -> template);                       $this ->rss = $this -> dom -> GetElementsByTagName('rss');                }                public functioncreateChannel(){                       $channel =$this -> dom -> createElement("channel");                       $channel-> appendChild($this -> createEle('title',$this -> title));                       $channel-> appendChild($this -> createEle('link',$this -> link));                       $channel-> appendChild($this -> createEle('description',$this ->description));                       $this ->rss -> appendChild($channel);                                        }                public functioncreateEle($name,$value){                       $element =$this -> dom -> createElement($name);                       $text = $this-> dom -> createTextNode($value);                       $element-> appendChild($text);                       return$element;                }                protected functionadditem($list){                       foreach($listas $goods){                              $this-> rss -> appendChild($this-> createitem($goods));                       }                }                public functioncreateitem($arr){                       $item = $this-> dom -> createElement("item");                       foreach($arras $key => $value){                              $item-> appendChild($this -> createEle($key,$value));                       }                       return $item;                }                                 public functiondisplay(){                       $this ->createChannel();                       $this ->additem($this -> items);                       echo $this-> dom -> savexml();                }         }         $sql = "select * fromstu";         $rs = mysql_query($sql);         while($row =mysql_fetch_assoc($rs)){                $list[] = $row;         }         $test = new test();         $test -> title = "测试标题";         $test -> link = "测试连接";         $test -> description ="测试内容";         $test -> display();         $test -> items = $list;  </span>

更多相关文章

  1. Node.js 应用最佳实践:日志[每日前端夜话0xBB]
  2. 利用ELK搭建Docker容器化应用日志中心
  3. Apollo 源码解析 —— Config Service 操作审计日志 Audit
  4. Spring Boot日志框架实践
  5. Python 中更优雅的日志记录方案
  6. 一看就懂,Python 日志模块详解及应用
  7. Pandas高端操作:10行代码解决用户游览日志合并排序问题
  8. 起个简单枯燥的标题:找出连续差相同的数字
  9. rsyslog日志服务器搭建

随机推荐

  1. Android布局属性全面剖析
  2. scrollView嵌套recyclerView 显示不全
  3. Android sqlite
  4. EditText设置键盘操作
  5. ~/.dirlst 文件
  6. Android——蓝牙通信
  7. Android中使用ViewPage进行广告轮播测试
  8. Android Building System 分析
  9. android MotionEvent中getX()和getRawX()
  10. android设置不显示标题