search
HomeBackend DevelopmentPHP TutorialCorrectly Master PHP JSON Application_PHP Tutorial
Correctly Master PHP JSON Application_PHP TutorialJul 15, 2016 pm 01:32 PM
jsonphpxmlandapplicationmasteryescorrectnodeparse

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 - PHP JSON application.

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 the 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 correctly master PHP JSON application. 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 look at the use of encoding first:

<ol class="dp-xml">
<li class="alt"><span><span>$</span><span class="attribute">arr</span><span> = </span><span class="attribute-value">array</span><span>(   </span></span></li>
<li>
<span>'name' =</span><span class="tag">></span><span>'陈毅鑫',   </span>
</li>
<li class="alt">
<span>'nick' =</span><span class="tag">></span><span> '深空',   </span>
</li>
<li>
<span>'contact' =</span><span class="tag">></span><span> array(   </span>
</li>
<li class="alt">
<span>'email' =</span><span class="tag">></span><span> 'shenkong at qq dot com',   </span>
</li>
<li>
<span>'website' =</span><span class="tag">></span><span> <br>'http://www.chenyixin.com',   </span>
</li>
<li class="alt"><span>)   </span></li>
<li><span>);   </span></li>
<li class="alt">
<span>$</span><span class="attribute">json_string</span><span> = </span><span class="attribute-value">json_encode</span><span>($arr);   </span>
</li>
<li><span>echo $json_string;   </span></li>
<li class="alt">
<span class="tag">?></span><span> </span>
</li>
</ol>

It’s 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 result is as follows:

<ol class="dp-xml"><li class="alt"><span><span>{"name":"u9648u6bc5u946b"<br>,"nick":"u6df1u7a7a","<br>contact":{"email":"shenkong <br>at qq dot com","website":<br>"http://www.chenyixin.com"}}  </span></span></li></ol>

I have already said that 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:

<ol class="dp-xml">
<li class="alt"><span><span>$</span><span class="attribute">arr</span><span> = </span><span class="attribute-value">array</span><span>(   </span></span></li>
<li>
<span>'name' =</span><span class="tag">></span><span>'陈毅鑫',   </span>
</li>
<li class="alt">
<span>'nick' =</span><span class="tag">></span><span> '深空',   </span>
</li>
<li>
<span>'contact' =</span><span class="tag">></span><span> array(   </span>
</li>
<li class="alt">
<span>'email' =</span><span class="tag">></span><span> 'shenkong<br> at qq dot com',   </span>
</li>
<li>
<span>'website' =</span><span class="tag">><br></span><span> 'http://www.chenyixin.com',   </span>
</li>
<li class="alt"><span>)   </span></li>
<li><span>);   </span></li>
<li class="alt">
<span>$</span><span class="attribute">json_string</span><span> = <br></span><span class="attribute-value">json_encode</span><span>($arr);   </span>
</li>
<li>
<span>$</span><span class="attribute">obj</span><span> = </span><span class="attribute-value">json_decode</span><span>($json_string);   </span>
</li>
<li class="alt"><span>print_r($obj);   </span></li>
<li>
<span class="tag">?></span><span> </span>
</li>
</ol>

Can you access the attributes in the object? $obj->name, like this, of course, you can also convert it into an array for easy calling:

<ol class="dp-xml">
<li class="alt"><span><span>$</span><span class="attribute">json_string</span><span> = </span><span class="attribute-value">json_encode</span><span>($arr);   </span></span></li>
<li>
<span>$</span><span class="attribute">obj</span><span> = </span><span class="attribute-value">json_decode</span><span>($json_string);   </span>
</li>
<li class="alt">
<span>$</span><span class="attribute">arr</span><span> = (array) $obj;   </span>
</li>
<li><span>print_r($arr);  </span></li>
</ol>

PHP is not particularly useful for transferring it around, except for cache generation. It’s better to store the array directly. However, its effect will come out when you interact with the front desk. Let’s see how I use Javascript to use this character:

In the above, directly change this character When a string is assigned to a variable, 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 be shown that PHP JSON applications have a wider range of applications, 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.

The main file index.html

The adjusted file profile.php

<ol class="dp-xml">
<li class="alt"><span><span>$</span><span class="attribute">arr</span><span> = </span><span class="attribute-value">array</span><span>(   </span></span></li>
<li>
<span>'name' =</span><span class="tag">></span><span> '陈毅鑫',   </span>
</li>
<li class="alt">
<span>'nick' =</span><span class="tag">></span><span> '深空',   </span>
</li>
<li>
<span>'contact' =</span><span class="tag">></span><span> array(   </span>
</li>
<li class="alt">
<span>'email' =</span><span class="tag">></span><span> <br>'shenkong at qq dot com',   </span>
</li>
<li>
<span>'website' =</span><span class="tag">></span><span> <br>'http://www.chenyixin.com',   </span>
</li>
<li class="alt"><span>)   </span></li>
<li><span>);   </span></li>
<li class="alt">
<span>$</span><span class="attribute">json_string</span><span> = </span><span class="attribute-value">json_encode</span><span>($arr);   </span>
</li>
<li><span>echo "getProfile($json_string)";   </span></li>
<li class="alt">
<span class="tag">?></span><span> </span>
</li>
</ol>

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


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446103.htmlTechArticleI 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, this...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

php怎么将url的参数转化成数组php怎么将url的参数转化成数组Apr 21, 2022 pm 08:50 PM

转化方法:1、使用“mb_substr($url,stripos($url,"?")+1)”获取url的参数部分;2、使用“parse_str("参数部分",$arr)”将参数解析到变量中,并传入指定数组中,变量名转为键名,变量值转为键值。

php怎么去除首位数字php怎么去除首位数字Apr 20, 2022 pm 03:23 PM

去除方法:1、使用substr_replace()函数将首位数字替换为空字符串即可,语法“substr_replace($num,"",0,1)”;2、用substr截取从第二位数字开始的全部字符即可,语法“substr($num,1)”。

如何通过编写实用代码来掌握 PHP8 扩展的使用如何通过编写实用代码来掌握 PHP8 扩展的使用Sep 12, 2023 pm 02:39 PM

如何通过编写实用代码来掌握PHP8扩展的使用引言:PHP(HypertextPreprocessor)是一种广泛使用的开源脚本语言,常用于编写Web应用程序。随着PHP8的发布,新的扩展和功能使得开发者能够更好地满足业务需求和提高代码效率。本文将介绍如何通过编写实用代码来掌握PHP8扩展的使用。一、了解PHP8扩展PHP8引入了许多新的扩展,如FFI、

php有操作时间的方法吗php有操作时间的方法吗Apr 20, 2022 pm 04:24 PM

php有操作时间的方法。php中提供了丰富的日期时间处理方法:1、date(),格式化本地日期和时间;2、mktime(),返回日期的时间戳;3、idate(),格式化本地时间为整数;4、strtotime(),将时间字符串转为时间戳等等。

php怎么去掉右边几个字符php怎么去掉右边几个字符Apr 21, 2022 pm 07:45 PM

去掉方法:1、用substr_replace()删除右边n位置开始的全部字符,语法“substr_replace($str,"",-n)”,参数“n”为需要去除的字符个数;2、用substr(),语法“substr($str,0,-n)”。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment