国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Home php教程 PHP開(kāi)發(fā) Teach you how to use PHP to output Chinese JSON strings

Teach you how to use PHP to output Chinese JSON strings

Dec 27, 2016 pm 04:20 PM

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

json_encode — JSON encodes the variable and returns the JSON form of the value, for example:

<?php
$arr = array (&#39;a&#39;=>1,&#39;b&#39;=>2,&#39;c&#39;=>3,&#39;d&#39;=>4,&#39;e&#39;=>5);
echo json_encode($arr);
?>

The output after the above code is executed:

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

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

<?php
$arr = array (&#39;a&#39;=>&#39;腳本之家&#39;);
echo json_encode($arr);
?>

The output after the above code is executed:

{"a":"\u811a\u672c\u4e4b\u5bb6"}

The bottom layer of PHP has been processed by unicode. If you think it is not intuitive enough, you can use the urlencode and urldecode methods to bypass the process of transcoding to unicode:

$arr = array (&#39;a&#39;=>urlencode(&#39;PHP中文網(wǎng)&#39;));
echo urldecode(json_encode($arr));

After the above code is executed, the output is:

{"a":"PHP中文網(wǎng)"}

For more related articles that teach you how to use PHP to output Chinese JSON strings, please pay attention to the PHP Chinese website!

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

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

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.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)