JSON是什么?简单的说就是遗传有存储意义的字符串,用于传递(存储数据),一下记下JS和PHP之间的JSON应用(AJAX应用显著): 以下的PHP代码将某个数组转化为JSON格式代码
运行将输出一下字符串:
{"Name":"JOE","IfStudent":true,"Website":{"qzone":"http://23456325.qzone.qq.com","blog":"http://xiebiji.com"}} stdClass Object ( [Name] => JOE [IfStudent] => 1 [Website] => stdClass Object ( [qzone] => http://23456325.qzone.qq.com [blog] => http://xiebiji.com ) ) Array ( [Name] => JOE [IfStudent] => 1 [Website] => stdClass Object ( [qzone] => http://23456325.qzone.qq.com [blog] => http://xiebiji.com ) )以下是JS把JSON转换为JS DOM对象(网上很多认为是转换为数组,但是我自己觉得那是dom对象,个人不知道怎么遍历它)
$JsonString='{"Name":"JOE","IfStudent":true,"Website.........[ More Detail ]