PHP learning notes 7-JSON data operations, php learning notes 7-json_PHP tutorial

Source: Internet
Author: User
PHP learning Notes 7-JSON data operations, php learning Notes 7-JSON. PHP learning notes 7-JSON data operations, php learning notes 7-jsonJSON, full name is JavaScriptObjectNotation. It is based on JavaScript programming language ECMA-2623rdEdition-December1999 standard a PHP learning notes 7-JSON data operations, php learning notes 7-json

JSON, the full name is JavaScript Object Notation. It is a lightweight data exchange format based on the JavaScript programming language ECMA-262 3rd Edition-December 1999 standard, mainly used to exchange data with the server. Similar to XML, it is an independent language and has great advantages in cross-platform data transmission.

Create a json. php file and perform the encode operation first:

1 // encode2 // Generate JSON format data 3 $ arr = array (1, 2, 3, 4, 5, 6, 7, 8, 9, 'hello', 'php '); 4 echo json_encode ($ arr); // json_encode: converts an object to json format data.

The result is [1, 2, 3, 4, 5, 6, 7, 8, 9, "Hello", "PHP"].

Then perform the decode operation:

1 // decode decoding 2 $ jsonStr = '{"h": "Hello", "w": "World", "0": [3, 2, 1]}'; 3 $ obj = json_decode ($ jsonStr); 4 echo $ obj-> h; // you can obtain the result by using the member access method.

After knowing how to use it, you can try to capture API data, such as the weather...

Jsonjson, full name: JavaScript Object Notation. It is based on the JavaScript programming language ECMA-262 3rd Edition-December 1999 standard one...

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.