Home Backend Development PHP Tutorial PHP6 Preparatory Course JSON Example Code_PHP Tutorial

PHP6 Preparatory Course JSON Example Code_PHP Tutorial

Jul 21, 2016 pm 03:50 PM
javascript json language programming code Example

It is a subset based on JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999
JSON mainly uses pairs of {} to wrap each object (object), and pairs of [] to wrap each object array (array),
Use pairs of "" to wrap each string, use commas to separate each variable, and the data types include string, number, array, object

The following simple JSON The format describes that an object json has a member variable, which contains three objects

Copy content to the clipboard code:
var json = {
'query' : [
{'id':'1','type':'a','title':'PHP 5.2.0's new function JSON decoder & encoder'},
{'id':'2', 'type':'b','title':'JSON stands for JavaScript Object Notation'},
{'array': ['A', 'B','C', 'D', 'E'] }
]
};
In this way, we can get an Object called json, and this json Object contains an independent member query
and query contains an Array, and this Array contains Three Objects, the first two Objects contain three members
id, type, title, and the last Object array contains an array. Do you understand this explanation?

But how to use it?
Very simple
alert('I have ' +json.query.length + ' object.');
//alert I have 3 object.
alert('type='+json. query[1].type+'rntitle'+json.query[1].title);
//alert type=b title=JSON full name JavaScript Object Notation
alert('array index 3='+json. query[2].array[3]);
//alert array index 3=D

This way it is easier to operate the data. There is no need to deal with the complex DOM, and the required data can be easily Obtain
For example, in the above example json.query[ i ].title, you can obtain the value contained in the i-th title
PHP is developing very rapidly. When the programming community still has little understanding of JSON, it may not be possible at all. When I don’t know what JSON is,
PHP has been incorporated into the core in the latest version 5.2.0, and the default state is enabled. Compared with other Script languages,
PHP is leading the way. In version 5.2.0, it is JSON. Implemented two functions json_decode() and json_encode()
The former is to restore the JSON format string to the PHP native array
The latter is to compile the PHP native array into the JSON format string
However, since Javascript supports Unicode, if you use non-Ascii characters when accessing the database, such as Chinese, Japanese, and Korean
you need to convert the character encoding to UTF8, otherwise the string after json_encode() will be It’s gibberish
================================================ = ==========
After a brief introduction to JOSN in the previous article
This article will implement how to use JOSN
The following examples require the use of MySQL4.1 or above
The entire encoding process uses utf8
to inherit the data format of the previous article. There are three fields in the table: id, type, title
The specifications of the data table are as follows
Copy the content to the clipboard code:
CREATE TABLE `news ` (
`id` int(10) unsigned NOT NULL auto_increment,
`type` varchar(255) NOT NULL default '',
`title` varchar(64) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
Copy content to clipboard code:
//Establish connection
$conn = mysqli_connect("localhost", 'root', '')or die('Cannot connect to the database');
//Select the database
mysqli_select_db($conn,'mydata') or die('Cannot select database');
//Set connection encoding rules, don't know how to find it on google
mysqli_query($conn,'SET NAMES 'utf8'');
// Get data
$results = mysqli_query($conn,'SELECT id,type,title FROM news');
//Josn string
$json = '';
//Because it is an example , so control the loop by yourself
$i=0;
while($row = mysqli_fetch_assoc($results))
{
$i++;
$json .= json_encode($row) ;
//There are only three pieces of data in the data table, so there is no need to add "," at the end of the third piece of data. Remember, there is no need to add "," to the last piece of data.
if ($i< ;3)
{
$json .= ",";
}

}
//Pack the data into the array
$json = '{"query ":[ '.$json.']}';?>



Json example








Restore Json

//Decode the string
$s_JSON_Decoded = json_decode($json,true);
//Retrieve data
foreach ($s_JSON_Decoded as $row)
{
foreach ($row as $rowa)
{
echo $rowa['title']."
";
}

}
?>

After a simple drill
I believe everyone has a deeper understanding of JSON
Of course the application of JSON is not just as simple as the example
If you are interested in studying together,

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/319271.htmlTechArticleIt is based on JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999, a subset of JSON that mainly utilizes Use pairs of {} to wrap each object (object), use pairs of...
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

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 ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

System76 tips Fedora Cosmic spin for 2025 release with Fedora 42 System76 tips Fedora Cosmic spin for 2025 release with Fedora 42 Aug 01, 2024 pm 09:54 PM

System76 has made waves recently with its Cosmic desktop environment, which is slated to launch with the next major alpha build of Pop!_OS on August 8. However, a recent post on X by System76 CEO, Carl Richell, has tipped that the Cosmic DE developer

Performance optimization tips for converting PHP arrays to JSON Performance optimization tips for converting PHP arrays to JSON May 04, 2024 pm 06:15 PM

Performance optimization methods for converting PHP arrays to JSON include: using JSON extensions and the json_encode() function; adding the JSON_UNESCAPED_UNICODE option to avoid character escaping; using buffers to improve loop encoding performance; caching JSON encoding results; and considering using a third-party JSON encoding library.

How do annotations in the Jackson library control JSON serialization and deserialization? How do annotations in the Jackson library control JSON serialization and deserialization? May 06, 2024 pm 10:09 PM

Annotations in the Jackson library control JSON serialization and deserialization: Serialization: @JsonIgnore: Ignore the property @JsonProperty: Specify the name @JsonGetter: Use the get method @JsonSetter: Use the set method Deserialization: @JsonIgnoreProperties: Ignore the property @ JsonProperty: Specify name @JsonCreator: Use constructor @JsonDeserialize: Custom logic

Tsinghua University and Zhipu AI open source GLM-4: launching a new revolution in natural language processing Tsinghua University and Zhipu AI open source GLM-4: launching a new revolution in natural language processing Jun 12, 2024 pm 08:38 PM

Since the launch of ChatGLM-6B on March 14, 2023, the GLM series models have received widespread attention and recognition. Especially after ChatGLM3-6B was open sourced, developers are full of expectations for the fourth-generation model launched by Zhipu AI. This expectation has finally been fully satisfied with the release of GLM-4-9B. The birth of GLM-4-9B In order to give small models (10B and below) more powerful capabilities, the GLM technical team launched this new fourth-generation GLM series open source model: GLM-4-9B after nearly half a year of exploration. This model greatly compresses the model size while ensuring accuracy, and has faster inference speed and higher efficiency. The GLM technical team’s exploration has not

Create and run Linux ".a" files Create and run Linux ".a" files Mar 20, 2024 pm 04:46 PM

Working with files in the Linux operating system requires the use of various commands and techniques that enable developers to efficiently create and execute files, code, programs, scripts, and other things. In the Linux environment, files with the extension &quot;.a&quot; have great importance as static libraries. These libraries play an important role in software development, allowing developers to efficiently manage and share common functionality across multiple programs. For effective software development in a Linux environment, it is crucial to understand how to create and run &quot;.a&quot; files. This article will introduce how to comprehensively install and configure the Linux &quot;.a&quot; file. Let's explore the definition, purpose, structure, and methods of creating and executing the Linux &quot;.a&quot; file. What is L

Create Agent in one sentence! Robin Li: The era is coming when everyone is a developer Create Agent in one sentence! Robin Li: The era is coming when everyone is a developer Apr 17, 2024 pm 02:28 PM

The big model subverts everything, and finally got to the head of this editor. It is also an Agent that was created in just one sentence. Like this, give him an article, and in less than 1 second, fresh title suggestions will come out. Compared to me, this efficiency can only be said to be as fast as lightning and as slow as a sloth... What's even more incredible is that creating this Agent really only takes a few minutes. Prompt belongs to Aunt Jiang: And if you also want to experience this subversive feeling, now, based on the new Wenxin intelligent agent platform launched by Baidu, everyone can create their own intelligent assistant for free. You can use search engines, smart hardware platforms, speech recognition, maps, cars and other Baidu mobile ecological channels to let more people use your creativity! Robin Li himself

In-depth understanding of PHP: Implementation method of converting JSON Unicode to Chinese In-depth understanding of PHP: Implementation method of converting JSON Unicode to Chinese Mar 05, 2024 pm 02:48 PM

In-depth understanding of PHP: Implementation method of converting JSONUnicode to Chinese During development, we often encounter situations where we need to process JSON data, and Unicode encoding in JSON will cause us some problems in some scenarios, especially when Unicode needs to be converted When encoding is converted to Chinese characters. In PHP, there are some methods that can help us achieve this conversion process. A common method will be introduced below and specific code examples will be provided. First, let us first understand the Un in JSON

The relationship between the number of Oracle instances and database performance The relationship between the number of Oracle instances and database performance Mar 08, 2024 am 09:27 AM

The relationship between the number of Oracle instances and database performance Oracle database is one of the well-known relational database management systems in the industry and is widely used in enterprise-level data storage and management. In Oracle database, instance is a very important concept. Instance refers to the running environment of Oracle database in memory. Each instance has an independent memory structure and background process, which is used to process user requests and manage database operations. The number of instances has an important impact on the performance and stability of Oracle database.

See all articles