Home> php教程> php手册> body text

A brief analysis of json_encode() and json_decode()_php basics in php

WBOY
Release: 2016-05-16 08:59:51
Original
4786 people have browsed it

json_encode()

This function is mainly used to convert arrays and objects into json format.

Copy codeThe code is as follows:

$arr = array ('a'=>' a','b'=>'b','c'='c','d'=>'d','e'='e');
echo json_encode($arr);

Output results:

A brief analysis of json_encode() and json_decode()_php basics in php

json only accepts utf-8 encoded characters, and the parameters of json_encode() must be utf-8 encoded.

Copy codeThe code is as follows:

class person
{
public $ name;
public $age;
public $height;
function __construct($name,$age,$height)
{
$this->name = $name;
$ this->age = $age;
$this->height = $height;
}
}

$obj = new person("zhangsan",20,100);
$foo_json = json_encode($obj);
echo $foo_json;

Output results:

A brief analysis of json_encode() and json_decode()_php basics in php

When the attributes in the class are private variables, they will not be output.

json_decode()

This function is used to convert json text into the corresponding PHP data structure.

Copy codeThe code is as follows:

$json = '{"a":"hello","b":"world","c":"zhangsan","d":20 ,"e":170}';
var_dump(json_decode($json));

Output results:

A brief analysis of json_encode() and json_decode()_php basics in php

Normally, json_decode() always returns a PHP object.

Convert to array:

Copy codeThe code is as follows:

$json = '{"a":"hello ","b":"world","c":"zhangsan","d":20,"e":170}';
var_dump(json_decode($json,ture));

A brief analysis of json_encode() and json_decode()_php basics in php

Related labels:
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
    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!