最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

解决php array数组生成xml文件汉字编码问题

时间:2014-06-09 16:40来源: 作者: 点击:
汉字在php应用中经常会给我们带来一些麻烦,今天在网上找到一段array数组转换成xml时发现汉字就为空了,后来gg了关天得出比较好的结果了,下面与大家分享,在 php 数组转xml我们在php中学会这

汉字在php应用中经常会给我们带来一些麻烦,今天在网上找到一段array数组转换成xml时发现汉字就为空了,后来gg了关天得出比较好的结果了,下面与大家分享,在 php 数组转xml我们在php中学会这样来写:

  1. function array2xml($array$xml = false){  
  2.     if($xml === false){  
  3.         $xml = new SimpleXMLElement('<root/>');  
  4.     }  
  5.     foreach($array as $key => $value){  
  6.         if(is_array($value)){  
  7.             array2xml($value$xml->addChild($key));  
  8.         }else{  
  9.             $xml->addChild($key$value);  
  10.         }  
  11.     }  
  12.     return $xml->asXML();  
  13. }  
  14.    
  15. header('Content-type: text/xml');  
  16. print array2xml($array); 

当内容出现汉字时会出现为空的情况,解决办法是转编码处理,代码如下:  

  1. function array2xml($array$xml = false){  
  2.     if($xml === false){  
  3.         $xml = new SimpleXMLElement('<root/>');  
  4.     }  
  5.     foreach($array as $key => $value){  
  6.         if(is_array($value)){  
  7.             array2xml($value$xml->addChild($key));  
  8.         }else{  
  9.              
  10. //$value=utf8_encode($value);  
  11.    
  12.             if (preg_match("/([x81-xfe][x40-xfe])/"$value$match)) {  
  13.                 $value = iconv('gbk''utf-8'$value);    
  14. //判断是否有汉字出现  
  15.             }  
  16.             $xml->addChild($key$value);  
  17.         }  
  18.     }  
  19.     return $xml->asXML();  
(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容