程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php生成xml和轉換[源碼]

php生成xml和轉換[源碼]

編輯:關於PHP編程

  php生成xml就像樹一樣,逐個添加節點,可以在一個父節點下添加多個子節點, function madexml()

 

  1. {  
  2.     //獲取模板信息  
  3.     $strTempInfo = $this->modelCmsObj->getTemplate(2007);  
  4.     $arrTemp = explode("#",$strTempInfo);  
  5.     array_shift($arrTemp);  
  6.     $arrContents = array();  
  7.     foreach($arrTemp as $k=>$v)  
  8.     {  
  9.         $arrContents[$k]=explode(",",$v);  
  10.     }  
  11.     //解析為xml文件  
  12.     $objDom = new DOMDocument("1.0");  
  13.     header("Content-Type: text/plain");   
  14.     //添加元素和文本節點  
  15.     $root = $objDom->createElement("recommend");  
  16.     $objDom->appendChild($root);  
  17.     foreach($arrContents as $k=>$v)  
  18.     {  
  19.     $item = $objDom->createElement("entry");  
  20.     $root->appendChild($item);  
  21.     $nextitem1 = $objDom->createElement("simgurl");  
  22.     $nextitem2 = $objDom->createElement("imgurl");  
  23.     $nextitem3 = $objDom->createElement("fileurl");  
  24.     $item->appendChild($nextitem1);  
  25.     $item->appendChild($nextitem2);  
  26.     $item->appendChild($nextitem3);  
  27.     $text1 = $objDom->createTextNode($v[0]);  
  28.     $text = $objDom->createTextNode($v[1]);  
  29.     $text2 = $objDom->createTextNode($v[2]);  
  30.     $nextitem2->appendChild($text1);  
  31.     $nextitem3->appendChild($text2);  
  32.     $nextitem1->appendChild($text);  
  33.     }  
  34.  
  35.     echo $objDom->saveXML();  

simplexml_load_string把xml串轉化為字符串

  1. <?php  
  2. $string = <<<XML//聲明xml文檔  
  3. <?xml version=1.0?>   
  4. <document>  
  5. <title>Forty What?</title>  
  6. <from>Joe</from>  
  7. <to>Jane</to>  
  8. <body>  
  9.   I know thats the answer -- but whats the question?  
  10. </body>  
  11. </document>  
  12. XML;  
  13.  
  14. $xml = simplexml_load_string($string);  
  15.  
  16. var_dump($xml);  
  17. ?>   
  18.  
  19.  
  20. This script will display:   
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved