当前位置:首页 > PHP教程 > php应用 > 列表

PHP输出生成XML文件实例程序

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-20 13:22:27 浏览: 评论:0 

在php中输出生成xml文件的方法有很多,有直接用header输入,也有使用DomDocument与SimpleXML实现创建xml文档的.

方法一,代码如下:

  1. function xml_out($content$charset = 'utf-8') { 
  2.  @header("Expires: -1"); 
  3.  @header("Cache-Control: no-store, private, post-check=0, pre-check=0, max-age=0", FALSE); 
  4.  @header("Pragma: no-cache"); 
  5.  @header("Content-type: application/xml; charset=$charset"); 
  6.  echo '<' . "?xml version="1.0" encoding="$charset"?>n"
  7.  echo "<root><![CDATA[" . trim($content) . "]]></root>"
  8.  exit(); 

方法二,代码如下:

  1. <?php 
  2. header("Content-type: text/xml"); 
  3. echo "<?xml version="1.0" encoding="UTF-8"?>"
  4. echo "<users><user><name>小小菜鸟</name><age>24</age><sex>男</sex></user><user><name>艳艳</name><age>23</age><sex>女</sex></user></users>"
  5. ?> 

方法三:使用DomDocument生成XML文件

创建节点使用createElement方法,创建文本内容使用createTextNode方法,添加子节点使用appendChild方法,创建属性使用createAttribute方法,代码如下:

  1. <?PHP 
  2. $data_array = array( 
  3.     array( 
  4.     'title' => 'title1'
  5.     'content' => 'content1'
  6.         'pubdate' => '2009-10-11'
  7.     ), 
  8.     array( 
  9.     'title' => 'title2'
  10.     'content' => 'content2'
  11.     'pubdate' => '2009-11-11'
  12.     ) 
  13. ); 
  14.  
  15. //  属性数组 
  16. $attribute_array = array( 
  17.     'title' => array( 
  18.     'size' => 1 
  19.     ) 
  20. ); 
  21.  
  22. //  创建一个XML文档并设置XML版本和编码。。 
  23. $dom=new DomDocument('1.0''utf-8'); 
  24.  
  25. //  创建根节点 
  26. $article = $dom->createElement('article'); 
  27. $dom->appendchild($article); 
  28.  
  29. foreach ($data_array as $data) { 
  30.     $item = $dom->createElement('item'); 
  31.     $article->appendchild($item); 
  32.  
  33.     create_item($dom, $item, $data, $attribute_array); 
  34.  
  35. echo $dom->saveXML(); 
  36.  
  37. function create_item($dom, $item, $data, $attribute) { 
  38.     if (is_array($data)) { 
  39.         foreach ($data as $key => $val) { 
  40.             //  创建元素 
  41.             $$key = $dom->createElement($key); 
  42.             $item->appendchild($$key); 
  43.  
  44.             //  创建元素值 
  45.             $text = $dom->createTextNode($val); 
  46.             $$key->appendchild($text); 
  47.  
  48.             if (isset($attribute[$key])) {  //  如果此字段存在相关属性需要设置 
  49.                 foreach ($attribute[$key] as $akey => $row) { 
  50.                     //  创建属性节点 
  51.                     $$akey = $dom->createAttribute($akey); 
  52.                     $$key->appendchild($$akey); 
  53.  
  54.                     // 创建属性值节点 
  55.                     $aval = $dom->createTextNode($row); 
  56.                     $$akey->appendChild($aval); 
  57.                 }//开源代码phpfensi.com 
  58.             }   //  end if 
  59.         } 
  60.     }   //  end if 
  61. }   //  end function 
  62. ?> 

方法四:SimpleXML输入xml格式编码

SimpleXML作为PHP核心的组成部分,可以把XML转换为对象,但是有时候,我需要对输出的xml格式设置编码,代码如下:

$XML = new SimpleXMLElement("<foo />"); echo($XML->asXML());
 
//输出结果:<?xml version="1.0"?> <foo/>
 
//如果想输出,代码如下:<?xml version="1.0" encoding="UTF-8"?> <foo/>

Tags: PHP输出XML 生成XML文件

分享到: