您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關如何在PHP項目中動態創建XML文檔,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
具體如下:
一. 代碼
conn.php
<?php $id=mysql_connect("localhost","root","root") or die('數據庫連接失敗:' . mysql_error()); if(mysql_select_db("db_database26",$id)) echo ""; else echo ('數據庫錯誤' . mysql_error()); mysql_query("set names gb2312"); ?>
index.php
<a ref="rss.xml">查看rss.xml文件中的內容</a> <?php include_once("conn/conn.php"); include_once("rss.php"); ?>
rss.php
<?php $self=$_SERVER['HTTP_REFERER']; $u=$_SERVER['HTTP_HOST']; $url="http://"."$u"; $date_time=date("Y-m-d H:i:s"); $dom = new DomDocument('1.0','gb2312'); //創建DOM對象 $object = $dom->createElement('rss'); //創建根節點rss $dom->appendChild($object); //將創建的根節點添加到dom對象中 $type1 = $dom->createAttribute('xmlns:rdf'); //創建一個節點屬性xmlns:rdf $object->appendChild($type1); //將屬性追加到rss根節點中 $type1_value = $dom->createTextNode('http://www.w3.org/1999/02/22-rdf-syntax-ns#'); //創建一個屬性值 $type1->appendChild($type1_value); //將屬性值賦給屬性xmlns:rdf $type2 = $dom->createAttribute('xmlns:dc'); //創建一個節點屬性xmlns:dc $object->appendChild($type2); //將屬性追加到rss根節點中 $type2_value = $dom->createTextNode('http://purl.org/dc/elements/1.1/'); //創建一個屬性值 $type2->appendChild($type2_value); //將屬性值賦給屬性xmlns:dc $type3 = $dom->createAttribute('xmlns:taxo'); //創建一個節點屬性xmlns:taxo $object->appendChild($type3); //將屬性追加到rss根節點中 $type3_value = $dom->createTextNode('http://purl.org/rss/1.0/modules/taxonomy/'); //創建一個屬性值 $type3->appendChild($type3_value); //將屬性值賦給屬性xmlns:taxo $type4 = $dom->createAttribute('version'); //創建一個節點屬性version $object->appendChild($type4); //將屬性追加到rss根節點中 $type4_value = $dom->createTextNode('2.0'); //創建一個屬性值 $type4->appendChild($type4_value); //將屬性值賦給屬性version $channel = $dom->createElement('channel'); //創建節點channel $object->appendChild($channel); //將節點channel追加到根節點rss下 $title = $dom->createElement('title'); //創建節點title $channel->appendChild($title); //將節點追加到channel節點下 $title_value = $dom->createTextNode(iconv('gb2312','utf-8','明日科技')); //創建元素值 $title->appendChild($title_value); //將值賦給title節點 $link = $dom->createElement('link'); //創建節點link $channel->appendChild($link); //將節點追加到channel節點下 $link_value = $dom->createTextNode(iconv('gb2312','utf-8','http://www.mingrisoft.com'));//創建元素值 $link->appendChild($link_value); //將值賦給link節點 $description = $dom->createElement('description'); //創建節點description $channel->appendChild($description); //將節點追加到channel節點下 $description_value = $dom->createTextNode(iconv('gb2312','utf-8','明日科技')); //創建元素值 $description->appendChild($description_value); //將值賦給description節點 $dc_creator = $dom->createElement('dc:creator'); //創建節點dc:creator $channel->appendChild($dc_creator); //將節點追加到channel節點中 $dc_creator_value = $dom->createTextNode(iconv('gb2312','utf-8','http://www.mingrisoft.com'));//創建元素值 $dc_creator->appendChild($dc_creator_value); //將值賦給dc:creator節點 $sql=mysql_query("select * from tb_rss_database order by tb_rss_id desc"); //從數據庫中讀取數據 while($myrow=mysql_fetch_array($sql)){ //循環輸出數據庫中數據 $item = $dom->createElement('item'); //創建節點item $object->appendChild($item); //將item追加到channel節點下 $item_title = $dom->createElement('title'); //創建title節點 $item->appendChild($item_title); //將節點追加到item節點下 $item_link = $dom->createElement('link'); //創建link節點 $item->appendChild($item_link); //將節點追加到item節點下 $item_description = $dom->createElement('description'); //創建description節點 $item->appendChild($item_description); //將節點追加到item節點中 $item_pubDate = $dom->createElement('pubDate'); //創建節點pubDate $item->appendChild($item_pubDate); //將節點追加到item節點下 $title_value = $dom->createTextNode(iconv('gb2312','utf-8',"$myrow[tb_rss_subject]")); //創建元素值 $item_title->appendChild($title_value); //將值賦給title節點 $link_value = $dom->createTextNode(iconv('gb2312','utf-8',"$url/tm/sl/22/02/look_content.php?lmbs=$myrow[tb_rss_id]"));//創建元素值 $item_link->appendChild($link_value); //將值賦給link節點 $description=substr($myrow[tb_rss_content],0,80); //截取該字段中的前80個字符 $description_value = $dom->createTextNode(iconv('gb2312','utf-8',"$description"));//創建元素值 $item_description->appendChild($description_value); //將值賦給description節點 $pubDate_value = $dom->createTextNode(iconv('gb2312','utf-8',"$date_time"));//創建元素值 $item_pubDate->appendChild($pubDate_value); //將值賦給pubDate節點 } $modi = $dom->saveXML(); //生成xml文檔 file_put_contents('Rss.xml',$modi); /* 將對象保存到Rss.xml文檔中 */ ?>
二. 運行結果
以上就是如何在PHP項目中動態創建XML文檔,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。