JS 語(yǔ)言中,一切都是對(duì)象。因此,任何支持的類型都可以通過(guò) JSON 來(lái)表示,例如字符串、數(shù)字、對(duì)象、數(shù)組等。但是對(duì)象和數(shù)組是比較特殊且常用的兩種類型,我們就先了解一下對(duì)象跟數(shù)組之間是如何轉(zhuǎn)換區(qū)別有是如何:
一、json_encode()
該函數(shù)主要用來(lái)將數(shù)組和對(duì)象,轉(zhuǎn)換為json格式。先看一個(gè)數(shù)組轉(zhuǎn)換的例子:
1 $arr = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5); 2 echo json_encode($arr);
結(jié)果為:{"a":1,"b":2,"c":3,"d":4,"e":5}
再看一個(gè)對(duì)象轉(zhuǎn)換的例子:
1 $obj->body = 'another post';2 $obj->id = 21;3 $obj->approved = true;4 $obj->favorite_count = 1;5 $obj->status = NULL;6 echo json_encode($obj);
結(jié)果為:{"body":"another post","id":21,"approved":true,"favorite_count":1,"status":null}
由于json只接受utf-8編碼的字符,所以json_encode()的參數(shù)必須是utf-8編碼,否則會(huì)得到空字符或者null。當(dāng)中文使用GB2312編碼,或者外文使用ISO-8859-1編碼的時(shí)候,這一點(diǎn)要特別注意。
二、索引數(shù)組和關(guān)聯(lián)數(shù)組
PHP支持兩種數(shù)組,一種是只保存"值"(value)的索引數(shù)組(indexed array),另一種是保存"名值對(duì)"(name/value)的關(guān)聯(lián)數(shù)組(associative array)。
由于javascript不支持關(guān)聯(lián)數(shù)組,所以json_encode()只將索引數(shù)組(indexed array)轉(zhuǎn)為數(shù)組格式,而將關(guān)聯(lián)數(shù)組(associative array)轉(zhuǎn)為對(duì)象格式。
比如,現(xiàn)在有一個(gè)索引數(shù)組
1 $arr = array('one','two','three');2 echo json_encode($arr);
結(jié)果為:["one","two","three"]
如果將它改為關(guān)聯(lián)數(shù)組:
1 $arr = Array('1'=>'one', '2'=>'two', '3'=>'three'); 2 echo json_encode($arr);
結(jié)果就變了:{"1":"one","2":"two","3":"three"}
注意,數(shù)據(jù)格式從"[]"(數(shù)組)變成了"{}"(對(duì)象)。
如果你需要將"索引數(shù)組"強(qiáng)制轉(zhuǎn)化成"對(duì)象",可以這樣寫:
1 json_encode( (object)$arr );
或者:
1 json_encode ( $arr, JSON_FORCE_OBJECT );
三、類(class)的轉(zhuǎn)換
下面是一個(gè)PHP的類:
1 class Foo {2 const ERROR_CODE = '404';3 public $public_ex = 'this is public';4 private $private_ex = 'this is private!';5 protected $protected_ex = 'this should be protected';
6 public function getErrorCode() {7 return self::ERROR_CODE;8 }9 } 現(xiàn)在,對(duì)這個(gè)類的實(shí)例進(jìn)行json轉(zhuǎn)換:
1 $foo = new Foo;2 $foo_json = json_encode($foo);3 echo $foo_json;
輸出結(jié)果是:{"public_ex":"this is public"}
可以看到,除了公開變量(public),其他東西(常量、私有變量、方法等等)都遺失了。
四、json_decode()
該函數(shù)用于將json文本轉(zhuǎn)換為相應(yīng)的PHP數(shù)據(jù)結(jié)構(gòu)。下面是一個(gè)例子:
1 $json = '{"foo": 12345}';2 $obj = json_decode($json);3 print $obj->{'foo'}; // 12345
通常情況下,json_decode()總是返回一個(gè)PHP對(duì)象,而不是數(shù)組。比如:
1 $json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';2 var_dump(json_decode($json));
結(jié)果就是生成一個(gè)PHP對(duì)象:
object(stdClass)[2] public 'a' => int 1 public 'b' => int 2 public 'c' => int 3 public 'd' => int 4 public 'e' => int 5如果想要強(qiáng)制生成PHP關(guān)聯(lián)數(shù)組,json_decode()需要加一個(gè)參數(shù)true:
1 1 $json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';2 2 var_dump(json_decode($json,true));
結(jié)果就生成了一個(gè)關(guān)聯(lián)數(shù)組:array (size=5) 'a' => int 1
'b' => int 2 'c' => int 3 'd' => int 4 'e' => int 5
五、json_decode()的常見錯(cuò)誤
下面三種json寫法都是錯(cuò)的,你能看出錯(cuò)在哪里嗎?
$bad_json = "{ 'bar': 'baz' }";$bad_json = '{ bar: "baz" }';$bad_json = '{ "bar": "baz", }';
對(duì)這三個(gè)字符串執(zhí)行json_decode()都將返回null,并且報(bào)錯(cuò)。
第一個(gè)的錯(cuò)誤是,json的分隔符(delimiter)只允許使用雙引號(hào),不能使用單引號(hào)。
第二個(gè)的錯(cuò)誤是,json名值對(duì)的"名"(冒號(hào)左邊的部分),任何情況下都必須使用雙引號(hào)。
第三個(gè)的錯(cuò)誤是,最后一個(gè)值之后不能添加逗號(hào)(trailing comma)。
另外,json只能用來(lái)表示對(duì)象(object)和數(shù)組(array),如果對(duì)一個(gè)字符串或數(shù)值使用json_decode(),將會(huì)返回null。
var_dump(json_decode("Hello World")); //null