Detailed explanation of how to apply JSON in PHP_PHP tutorial

WBOY
Release: 2016-07-13 17:40:40
Original
718 people have browsed it

In today’s Internet world, AJAX is no longer an unfamiliar word. Speaking of AJAX, XML that emerged due to RSS may immediately come to mind. XML parsing is probably no longer a problem, especially with PHP5 and the emergence of a large number of XML parsers, such as the most lightweight SimpleXML. However, for AJAX, XML parsing is more inclined to the support of front-end Javascript. I think everyone who has parsed XML will be confused by trees and nodes. It is undeniable that XML is a very good data storage method, but its flexibility makes it difficult to parse. Of course, the difficulty referred to here is relative to the protagonist of this article - JSON.

What is JSON? I won't repeat the concept. In layman's terms, it is a data storage format, just like a PHP serialized string. It is a data description. For example, if we serialize an array and store it, it can be easily deserialized and applied. The same is true for JSON, except that it builds an interactive bridge between client-side Javascript and server-side PHP. We use PHP to generate a JSON string, and then pass this string to the front-end Javascript. Javascirpt can easily convert it into JSON and then apply it. To put it simply, it really looks like an array.

Back to business, how to use JSON. PHP5.2 has built-in support for JSON. Of course, if it is lower than this version, there are many PHP version implementations on the market, just use whichever one you want. Now we mainly talk about the JSON built-in support of PHP. Very simple, two functions: json_encode and json_decode (very similar to serialization). One for encoding and one for decoding. Let’s first look at the use of encoding:
$arr = array(
name => Chen Yixin,
nick => Deep Sky,
contact => array (
email => shenkong at qq dot com,
website => http://www.chinaz.com,
)
);
$json_string = json_encode($arr );
echo $json_string;
?>

It is very simple to JSON an array. It should be pointed out that in non-UTF-8 encoding, Chinese characters cannot be encoded, and the result will be null. Therefore, if you use gb2312 to write PHP code, you need to use iconv or mb to convert the content containing Chinese to UTF-8 is then json_encoded, and the above output results are as follows:

{"name":"u9648u6bc5u946b","nick":"u6df1u7a7a","contact":{"email":"shenkong at qq dot com ","website":"http://www.chinaz.com"}}

I told you it is very similar to serialization, but you still don’t believe it. After encoding, it is necessary to decode. PHP provides the corresponding function json_decode. After json_decode is executed, an object will be obtained. The operation is as follows:
$arr = array(
name => Chen Yi鑫,
nick => deep space,
contact => array(
email => shenkong at qq dot com,
website => http://www.chinaz.com ,
)
);
$json_string = json_encode($arr);
$obj = json_decode($json_string);
print_r($obj);
?>


Can you access the properties in the object? $obj->name, like this, of course, you can also convert it to an array for easy calling:
$json_string = json_encode($arr);
$obj = json_decode($json_string);
$arr = (array) $obj;
print_r($arr);


PHP is not particularly useful for moving around. In addition to caching generation, it feels like directly storing the array However, its effect comes out when you interact with the front desk. Let’s see how I use Javascript to use this character:




In the above, directly assign this string to a variable, and it will become It becomes a Javascript array (the technical terminology should not be called an array, but due to PHP's habits, I always call it an array for easier understanding). In this way, you can easily traverse arr or do whatever you want. I haven’t mentioned AJAX yet, right? Yes, think about it, if the responseText returned by the server uses a JSON string instead of XML, wouldn't it be very convenient for the front-end Javascript to process it? This is how dog skin plaster is used.

In fact, as I write this, except for the different data storage formats, there is not much difference between JSON and XML, but I will mention one thing below. Although it has little to do with XML, it can illustrate the wider application of JSON, that is, cross-domain data calls.Due to security issues, AJAX does not support cross-domain calls. It is very troublesome to call data under different domain names. Although there are solutions (Stone mentioned proxies in his lecture, I don’t understand it but I know it) can be solved). I wrote two files, which are enough to demonstrate cross-domain calls.

Main file index.html





The adjusted file profile.php
$arr = array(
name => Chen Yixin,
nick => Shen Kong,
contact => array(
email => shenkong at qq dot com,
website => http://www.chinaz.com,
)
);
$json_string = json_encode($arr);
echo "getProfile($json_string)";
?>

Obviously, when index.html calls profile.php, a JSON string is generated and passed into getProfile as a parameter, and then the nickname is Insert it into a div, and a cross-domain data interaction is completed. Isn't it very simple? Since JSON is so simple and easy to use, what are you waiting for

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/486211.htmlTechArticleIn today’s Internet, AJAX is no longer an unfamiliar word. Speaking of AJAX, XML that emerged due to RSS may immediately come to mind. XML parsing is probably not a problem anymore, especially...
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 Tutorials
More>
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!