Home  >  Article  >  Backend Development  >  Introducing the application instructions and examples of JSON in PHP_PHP Tutorial

Introducing the application instructions and examples of JSON in PHP_PHP Tutorial

WBOY
WBOYOriginal
2016-07-13 17:40:12769browse

In today’s Internet world, AJAX is no longer an unfamiliar term. 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.

Let’s get back to the subject, 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 coding:
$arr = array(
name => Programming,
nick => Home,
contact => array(
email => www.ite5e.com@qq.com,
website => http://www.ite5e.com/,
)
);
$json_string = json_encode($arr);
echo $json_string;
?>

It is very simple to JSON an array. It should be pointed out that under 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":"www.ite5e.com @qq.com","website":"http://http://www.ite5e.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 = > programming,
nick => home,
contact => array(
email => www.ite5e.com@qq.com,
website => http:/ /www.ite5e.com/,
)
);
$json_string = json_encode($arr);
$obj = json_decode($json_string);
print_r($obj);
?>

Can you access the properties within 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 ; However, when you interact with the front desk, its effect comes out. Let’s see how I use Javascript to use this character:




In the above, assign this string directly Give a variable and it becomes a Javascript array (the technical terminology should not be called an array, but due to PHP's habits, I will 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.
Actually 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 transferred filenews. php
$arr = array(
name => programming,
nick => home,
contact => array(
email => www.ite5e.com@qq.com,
website => http://www.ite5e.com/,
)
);
$json_string = json_encode($ arr);
echo "getProfile($json_string)";
?>

Obviously, when index.html calls profile.php, a JSON string is generated and passed in as a parameter getProfile, and then insert the nickname into the div. In this way, 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/486235.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...
Statement:
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