1、json_encode()javascript
1
2
3
4
|
<?php
$arr = array ( 'a' =>1, 'b' =>2, 'c' =>3, 'd' =>4, 'e' =>5);
echo json_encode( $arr );
?>
|
輸出php
1
|
{ "a" :1, "b" :2, "c" :3, "d" :4, "e" :5}
|
再看一個對象轉換的例子:java
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 );
|
輸出json
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()的參數必須是utf-8編碼,不然會獲得空字符或者null。當中文使用GB2312編碼,或者外文使用ISO-8859-1編碼的時候,這一點要特別注意。數組
2、索引數組和關聯數組數據結構
PHP支持兩種數組,一種是隻保存"值"(value)的索引數組(indexed array),另外一種是保存"名值對"(name/value)的關聯數組(associative array)。app
因爲javascript不支持關聯數組,因此json_encode()只將索引數組(indexed array)轉爲數組格式,而將關聯數組(associative array)轉爲對象格式。函數
好比,如今有一個索引數組post
1
2
3
|
$arr = Array( 'one' , 'two' , 'three' );
echo json_encode( $arr );
|
輸出this
1
|
[ "one" , "two" , "three" ]
|
若是將它改成關聯數組:
1
2
3
|
$arr = Array( '1' => 'one' , '2' => 'two' , '3' => 'three' );
echo json_encode( $arr );
|
輸出變爲
1
|
{ "1" : "one" , "2" : "two" , "3" : "three" }
|
注意,數據格式從"[]"(數組)變成了"{}"(對象)。
若是你須要將"索引數組"強制轉化成"對象",能夠這樣寫
1
|
json_encode( (object) $arr );
|
或者
1
|
json_encode ( $arr , JSON_FORCE_OBJECT );
|
3、類(class)的轉換
下面是一個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;
}
}
|
如今,對這個類的實例進行json轉換:
1
2
3
4
5
|
$foo = new Foo;
$foo_json = json_encode( $foo );
echo $foo_json ;
|
輸出結果是
1
|
{ "public_ex" : "this is public" }
|
能夠看到,除了公開變量(public),其餘東西(常量、私有變量、方法等等)都遺失了。
4、json_decode()
該函數用於將json文本轉換爲相應的PHP數據結構。下面是一個例子:
1
2
3
4
5
|
$json = '{"foo": 12345}' ;
$obj = json_decode( $json );
print $obj ->{ 'foo' }; // 12345
|
一般狀況下,json_decode()老是返回一個PHP對象,而不是數組。好比:
1
2
3
|
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}' ;
var_dump(json_decode( $json ));
|
結果就是生成一個PHP對象:
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)
}
|
若是想要強制生成PHP關聯數組,json_decode()須要加一個參數true:
1
2
3
|
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}' ;
var_dump(json_decode( $json ,true));
|
結果就生成了一個關聯數組:
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)
}
|
5、json_decode()的常見錯誤
下面三種json寫法都是錯的,你能看出錯在哪裏嗎?
1
2
3
4
5
|
$bad_json = "{ 'bar': 'baz' }" ;
$bad_json = '{ bar: "baz" }' ;
$bad_json = '{ "bar": "baz", }' ;
|
對這三個字符串執行json_decode()都將返回null,而且報錯。
第一個的錯誤是,json的分隔符(delimiter)只容許使用雙引號,不能使用單引號。第二個的錯誤是,json名值對的"名"(冒號左邊的部分),任何狀況下都必須使用雙引號。第三個的錯誤是,最後一個值以後不能添加逗號(trailing comma)。
另外,json只能用來表示對象(object)和數組(array),若是對一個字符串或數值使用json_decode(),將會返回null。
1
|
var_dump(json_decode( "Hello World" )); //null
|