Difference between braces in php json_encode values

Source: Internet
Author: User

1. When array is a continuous array starting from 0, the result of json_encode is a string enclosed [].

When array is an array that does not start from 0 or is not continuous, the result of json_encode is a string in the key-value mode enclosed {}.

Copy codeThe Code is as follows:
$ Test = array ();
$ Test [] = 1;
$ Test [] = 1;
$ Test [] = 1;
Echo json_encode ($ test );

Result:

[1, 1]

Copy codeThe Code is as follows:
$ Test = array ();
$ Test [] = 1;
$ Test [] = 1;
$ Test [] = 1;
Unset ($ test [0]);
Echo json_encode ($ test );

Result:

{"1": 1, "2": 1}

2. When the string is in the [, 1] mode, the result parsed by json_decode is an array by default,

When the string is in the {"1": 1, "2": 1} mode, the result parsed by json_decode is an object by default, in this case, you can set its second parameter to true to force it to return an array.

3. Because php cannot distinguish between a one-dimensional array and a two-dimensional array, the above situation occurs, because it is recommended to set the second parameter to true when using json encoding.

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.