在PHP語言中使用JSON和將json還原成數(shù)組
一、json_encode()
|
1
2
3
4
|
<?php $arr = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);echo json_encode($arr);?> |
輸出
|
1
|
{"a":1,"b":2,"c":3,"d":4,"e":5} |
再看一個(gè)對(duì)象轉(zhuǎn)換的例子:
|
1
2
3
4
5
6
|
$obj->body = 'another post';$obj->id = 21;$obj->approved = true;$obj->favorite_count = 1;$obj->status = NULL;echo json_encode($obj); |
輸出
|
1
2
3
4
5
6
7
8
9
10
11
|
{ "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
2
3
|
$arr = Array('one', 'two', 'three');echo json_encode($arr); |
輸出
|
1
|
["one","two","three"] |
如果將它改為關(guān)聯(lián)數(shù)組:
|
1
2
3
|
$arr = Array('1'=>'one', '2'=>'two', '3'=>'three'); echo json_encode($arr); |
輸出變?yōu)?/span>
|
1
|
{"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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
class Foo { const ERROR_CODE = '404'; public $public_ex = 'this is public'; private $private_ex = 'this is private!'; protected $protected_ex = 'this should be protected'; public function getErrorCode() { return self::ERROR_CODE; }} |
現(xiàn)在,對(duì)這個(gè)類的實(shí)例進(jìn)行json轉(zhuǎn)換:
|
1
2
3
4
5
|
$foo = new Foo;$foo_json = json_encode($foo);echo $foo_json; |
輸出結(jié)果是
|
1
|
{"public_ex":"this is public"} |
可以看到,除了公開變量(public),其他東西(常量、私有變量、方法等等)都遺失了。
四、json_decode()
該函數(shù)用于將json文本轉(zhuǎn)換為相應(yīng)的PHP數(shù)據(jù)結(jié)構(gòu)。下面是一個(gè)例子:
|
1
2
3
4
5
|
$json = '{"foo": 12345}'; $obj = json_decode($json);print $obj->{'foo'}; // 12345 |
通常情況下,json_decode()總是返回一個(gè)PHP對(duì)象,而不是數(shù)組。比如:
|
1
2
3
|
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}'; var_dump(json_decode($json)); |
結(jié)果就是生成一個(gè)PHP對(duì)象:
|
1
2
3
4
5
6
7
8
9
10
|
object(stdClass)#1 (5) { ["a"] => int(1) ["b"] => int(2) ["c"] => int(3) ["d"] => int(4) ["e"] => int(5)} |
如果想要強(qiáng)制生成PHP關(guān)聯(lián)數(shù)組,json_decode()需要加一個(gè)參數(shù)true:
|
1
2
3
|
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}'; var_dump(json_decode($json,true)); |
結(jié)果就生成了一個(gè)關(guān)聯(lián)數(shù)組:
|
1
2
3
4
5
6
7
8
9
10
|
array(5) { ["a"] => int(1) ["b"] => int(2) ["c"] => int(3) ["d"] => int(4) ["e"] => int(5)} |
五、json_decode()的常見錯(cuò)誤
下面三種json寫法都是錯(cuò)的,你能看出錯(cuò)在哪里嗎?
|
1
2
3
4
5
|
$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只能用來表示對(duì)象(object)和數(shù)組(array),如果對(duì)一個(gè)字符串或數(shù)值使用json_decode(),將會(huì)返回null。
|
1
|
var_dump(json_decode("Hello World")); //null |
浙公網(wǎng)安備 33010602011771號(hào)