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

Encoding and decoding of json in php and js

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

Encoding and decoding of json in php and js

php in

1) encoding

$jsonStr = json_encode($array)

2) decoding

$arr = json_decode($jsonStr)

echo json_encode("Chinese", JSON_UNESCAPED_UNICODE);

Just add the 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); //兼容最好
  2) var obj = jsonStr.parseJSON(); //这俩需要浏览器带JSON解析器。或者加一个json的工具类
  3) var obj = JSON.parse(jsonStr);//
Copy after login


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!