Home > 类库下载 > PHP类库 > body text

Encoding and decoding of json in php and js

高洛峰
Release: 2016-10-09 11:53:15
Original
1276 people have browsed it

php in

1) Encoding

$jsonStr = json_encode($array)

2) Decoding

$arr = json_decode($jsonStr)

echo json_encode("Chinese", JSON_UNESCAPED_UNICODE);

Add parameter: JSON_UNESCAPED_UNICODE.

Test environment:

PHP Version 5.5.36

js in

1. Encoding

var str = obj.toJSONString();//Requires JSON parser or tool class

2. Three types of decoding :

 var jsonStr = ''[{"id":"1","name":"computer"}]";

 1) var obj = eval(jsonStr); //The best compatibility
 2) var obj = jsonStr.parseJSON(); //These two require the browser to have a JSON parser, or add a json tool class
 3) var obj = JSON.parse(jsonStr); //


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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!