search
Homephp教程PHP源码PHP Json函数不能处理中文的解决办法

PHP5.2 新增的 json 功能是非常受欢迎的,但是经过测试发现,json_encode

对中文的处理是有问题的:

    不能处理GB编码,所有的GB编码都会替换成空字符;

    utf8编码的中文被编码成unicode编码,相当于javascript的escape函数

处理的结果。

    为了能正确使用json,首先我们就应该在编码上采用utf8编码,然后再对

json_encode的返回结果稍加处理就可以得到正确的结果了。

PHP代码

 <?php
/*PHP5.2 新增的 json 功能是非常受欢迎的,但是经过测试发现,json_encode
 
对中文的处理是有问题的:
 
    不能处理GB编码,所有的GB编码都会替换成空字符;
 
    utf8编码的中文被编码成unicode编码,相当于javascript的escape函数
 
处理的结果。
 
    为了能正确使用json,首先我们就应该在编码上采用utf8编码,然后再对
 
json_encode的返回结果稍加处理就可以得到正确的结果了。
 
    有一个简单的类,将这两个函数包装了一下:*/
 
    class Json
 
    {
 
     public static function encode($str)
 
     {
 
      $code = json_encode($str);
 
      return preg_replace("#\\\u([0-9a-f]+)#ie", "iconv(&#39;UCS-2&#39;, 
 
&#39;UTF-8&#39;, pack(&#39;H4&#39;, &#39;\\1&#39;))", $code);
 
     }
 
     public static function decode($str)
 
     {
 
      return json_decode($str);
 
     }
 
    }
 
/*    使用的时候
 
    Json::encode($code);
 
    Json::decode($code);
 
    这样可以正确处理utf8编码的中文了。
 
    PS:对于GB编码的中文,我们可以在编码时先转成UTF8编码,再进行编码
 
,解码的时候再进行一个utf8 -> gb的转换就可以了。
 
    另外一般json_encode的结果我们是返回到客户端来使用,我们其实还可
 
以用javascript的unescape函数来对unicode编码的中文进行解码,从而还原
 
成正确的中文。
 
    或者用:
 
    $title = mb_convert_encoding($title, &#39;HTML-ENTITIES&#39;, $this-
 
>_outCharset);*/
 
    //任意编码下都正常显示
?>

                       


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

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

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.