search
Homephp教程php手册php 生成xml文件汉字中文编码问题

今天在利用php做一个交互时我需要生成xml文档,但是发现xml中汉字全部乱码了,下面小编来给各位同学介绍一下此问题解决办法.

先看一个把数组转换xml,代码如下:

function array2xml($array, $xml = false){  
    if($xml === false){  
        $xml = new SimpleXMLElement(&#39;<root/>&#39;);  
    }  
    foreach($array as $key => $value){  
        if(is_array($value)){  
            array2xml($value, $xml->addChild($key));  
        }else{  
            $xml->addChild($key, $value);  
        }  
    }  
    return $xml->asXML();  
}  
 
header(&#39;Content-type: text/xml&#39;);  
print array2xml($array);

这样如果没有中文汉字没问题,如果有中文就有问题了,当内容出现汉字时会出现为空的情况,解决办法是转编码处理,代码如下:

/*  
php 数组转换成xml  
*/ 
   
function array2xml($array, $xml = false){  
    if($xml === false){  
        $xml = new SimpleXMLElement(&#39;<root/>&#39;);  
    }  
    foreach($array as $key => $value){  
        if(is_array($value)){  
            array2xml($value, $xml->addChild($key));  
        }else{  
            //$value=utf8_encode($value);  
   
            if (preg_match("/([x81-xfe][x40-xfe])/", $value, $match)) {  
                $value = iconv(&#39;gbk&#39;, &#39;utf-8&#39;, $value);   //判断是否有汉字出现  
            }  
            $xml->addChild($key, $value);  
        }  
    }  
    return $xml->asXML();  
}


文章网址:

随意转载^^但请附上教程地址。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software