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

汉字在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. header('Content-type: text/xml');
  15. 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. //$value=utf8_encode($value);
  10. if (preg_match("/([x81-xfe][x40-xfe])/", $value, $match)) {
  11. $value = iconv('gbk', 'utf-8', $value);
  12. //判断是否有汉字出现
  13. }
  14. $xml->addChild($key, $value);
  15. }
  16. }
  17. return $xml->asXML();
  18. }