Use of JSON in php

Source: Internet
Author: User
Welcome to the Linux community forum and interact with 2 million technical staff to enter json_encode (). This function is mainly used to convert arrays and objects into json format. $ Arrarray (aa, bb, cc, dd, ee); echojson_encode ($ arr); json only accepts UTF-8 encoded characters, json_encode

Welcome to the Linux community forum and interact with 2 million technical staff> enter json_encode (). This function is mainly used to convert arrays and objects into json format. $ Arr = array ('A' = 'A', 'B' = 'B', 'C' = 'C', 'D' = 'D ', 'E' = 'E'); echo json_encode ($ arr); json only accepts UTF-8 encoded characters, json_encode

Welcome to the Linux community forum and interact with 2 million technicians>

Json_encode ()

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

$ Arr = array ('A' => 'A', 'B' => 'B', 'C' = 'C', 'D' => 'D ', 'E' = 'E ');

Echo json_encode ($ arr );

Json only accepts UTF-8 encoded characters. The json_encode () parameter must be UTF-8 encoded.

  

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;

When the attribute in the class is a private variable, it is not output.

Json_decode ()

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

$ Json = '{"a": "hello", "B": "world", "c": "zhangsan", "d": 20, "e ": 170 }';

Var_dump (json_decode ($ json ));

In general, json_decode () always returns a PHP Object.

Convert to an array:

$ Json = '{"a": "hello", "B": "world", "c": "zhangsan", "d": 20, "e ": 170 }';

Var_dump (json_decode ($ json, ture ));

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.