PHP outputs Chinese JSON string_PHP tutorial

WBOY
Release: 2016-07-13 10:27:55
Original
844 people have browsed it

PHP and JavaScript are actually very convenient, and PHP also provides native support for JSON format. Mainly includes two functions: JSON encoding and decoding:

json_endoce: http://cn.php.net/json_encode

json_dedoce: http://cn.php.net/json_decodejson_encode — JSON encodes the variable and returns the JSON form of value, for example:

 $arr = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);

echo json_encode($arr);

 ?>

Output after executing the above code:

 {"a":1,"b":2,"c":3,"d":4,"e":5}

If the data source to be encoded (usually an array) contains Chinese in the value, the output after json_encode processing is unicode encoding.

$arr = array ('a'=>'Mango Station');

echo json_encode($arr);

 ?>

Output after executing the above code:

 {"a":"u8292u679Cu5C0Fu7AD9"}

The bottom layer of PHP has already done unicode processing. If you find it not intuitive enough, you can use the urlencode and urldecode methods to bypass the process of transcoding to unicode:

$arr = array ('a'=>urlencode('Mango Station'));

echo urldecode(json_encode($arr)); After the above code is executed, the output is:

 {"a":"Mango Station"}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/815777.htmlTechArticlePHP and JavaScript are actually very convenient, and PHP natively provides support for JSON format. It mainly includes two functions: JSON encoding and decoding: json_endoce: http://cn.php.net/json_encode js...
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template