Convert PHP array to JSON and convert it to JavaScript Object

Source: Internet
Author: User
Tags php array to json

When I called the PHP function that returned the array value in JS a few days ago, I did not know how to read the returned PHP array data in JS. So I thought of converting the PHP array into a JSON string first, then, get the returned value in JS and convert it to an object using the eval function of Js. to read data. How to implement it?

 

1. Convert PHP array to JSON characters

 

PHP can use the json_encode function to convert the PHP array object to a JSON string, for example:

$ Response = array ("country_code" => $ country_code, "country_name" => $ country_name );

Echo json_encode ($ response); // return a JSON string

 

2. Convert the front-end to an object using the eval function of Js.

 

DetailsCodeFor example:

VaR OBJ = eval ("(" + JSON + ")");

VaR country_code = obj. country_code;

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.