function Jsontest ()
- {
- var json = [{' username ': ' crystal ', ' userage ': '},{' username ': ' Candy ', ' userage ': ' 24 '}];
- alert (json[1].username);
var json2 = [' Crystal ', '],[' Candy ', ' 24 '];
- Alert (json2[0][0]);
- }
Copy CodeThis function, the first alert (json[1].username); "Candy" will be prompted. A JSON variable is an array object. So it's going to be called in a format like obj.username. A second alert (json2[0][0]); Will prompt "Crystal". The Json2 variable is completely in a JSON format. Both JSON and JSON2 variables achieve the same effect, but json2 is significantly leaner than JSON. This is the JSON format for JavaScript. Let's look at the JSON format in PHP and look at the code first:
$arr = Array (
- Array (
- ' catid ' = ' 4 ',
- ' CatName ' = ' Rongrong ',
- ' Meta_title ' = ' Rongrong blog '
- ),
Array (
- ' catid ' = ' 6 ',
- ' CatName ' = ' climber ',
- ' Meta_title ' = ' The Climber ',
- )
- );
- $jsonstr = Json_encode ($arr);
- Echo $jsonstr;
Copy CodeIn this code, $arr is an array, and we use Json_encode to convert $arr to JSON format. This code will output: [{"CatID": "4", "CatName": "\u7a0b\u7a0b", "Meta_title": "\u7a0b\u7a0b\u535a\u5ba2"},{"catid": "6", "CatName" : "Climber", "Meta_title": "\u6500\u767b\u8005"}] This is what PHP does with JSON data. For JSON data, PHP can also use the Json_decode () function to convert JSON data to an array. For example, in the above code, we use the Json_decode function to deal with. The above array is printed again.
- $jsonstr = Json_encode ($arr);
- $jsonstr = Json_decode ($JSONSTR);
- Print_r ($JSONSTR);
Copy CodeNext, look at how the PHP JSON data and the JS JSON data are called each other. New file php_json.php:
$arr = Array (
- Array (
- ' catid ' = ' 4 ',
- ' CatName ' = ' Rongrong ',
- ' Meta_title ' = ' Rongrong blog '
- ),
Array (
- ' catid ' = ' 6 ',
- ' CatName ' = ' climber ',
- ' Meta_title ' = ' The Climber ',
- )
- );
- $jsonstr = Json_encode ($arr);
- -----below the PHP range-----
- var jsonstr=<? = $jsonstr? >;
Copy CodeNote: Var jsonstr=< at the end of the php_json.php file? = $jsonstr? >; This sentence. This is to assign the data in JSON format to the JSONSTR variable. Then create a file json.html:
Copy CodeIn this way, Loadjson (JSONSTR) prompts for "Rongrong" and "climber" when viewing json.html. This also implements the JS cross-domain invocation. |