


everest ultimate edition PHP6 preparatory course JSON example code
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 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 format describes an object json that has an Member variable, this member variable 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 full name 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. This Array contains three Objects. The first two Objects contain three members
id, type, title, and the last Object array contains an array. This explanation is also clear. Bar?
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 makes it easier to operate data. There is no need to deal with complex DOM. The required data can be easily obtained
For example, the above example json.query[ i ].title can be obtained in this way The value contained in the i-th title
PHP is developing very rapidly. When the programming world still has little knowledge of JSON or has no idea what JSON is at all
PHP has been incorporated into the core in the latest version 5.2.0, and the default state Yes, compared to other Script languages
PHP is leading the way. In version 5.2.0, it has implemented two functions json_decode() and json_encode() for JSON
The former restores JSON format strings to PHP native Array
The latter compiles PHP native array into a string in JSON format
However, since Javascript supports Unicode, if you use non-Ascii characters when accessing the database, such as Chinese, Japanese, and Korean
You need to change the characters Convert the encoding to UTF8, otherwise the string after json_encode() will be garbled
================================== = =======================
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 . Version 1 or above
The whole coding process uses utf8
Follow 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( 'Unable to connect to the database');
//Select the database
mysqli_select_db($conn,'mydata') or die('Can't select the database');
//Set the connection encoding rules, don't know how to use google Find
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, you can 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.']}';?>
< ;!doctype html public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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. Understanding
Of course, the application of JSON is not just as simple as the example
If you are interested, let’s study together
The above introduces the JSON example code of everest ultimate edition PHP6 preparatory class, including the content of everest ultimate edition. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove
