亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用xml實現rss訂閱的方法

發布時間:2020-10-20 16:16:34 來源:億速云 閱讀:351 作者:小新 欄目:編程語言

小編給大家分享一下利用xml實現rss訂閱的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

 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>

看完了這篇文章,相信你對利用xml實現rss訂閱的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长顺县| 紫云| 桐梓县| 五常市| 丽江市| 江门市| 顺昌县| 竹北市| 离岛区| 凉山| 石屏县| 六盘水市| 涪陵区| 衡阳县| 建阳市| 侯马市| 天津市| 永福县| 安图县| 黔南| 桂东县| 大安市| 闵行区| 屯留县| 迁西县| 溧水县| 宜州市| 泾川县| 探索| 东城区| 北川| 育儿| 正镶白旗| 大连市| 南汇区| 泽州县| 鹿泉市| 图木舒克市| 嘉兴市| 张家口市| 延吉市|