1.json_decode()
json_decode
(PHP 5 >= 5.2.0, PECL json >= 1.2.0)
json_decode — 對 JSON 格式的字串進行編碼
説明
mixed json_decode ( string $json [, bool $assoc ] )
接受一個 JSON 格式的字串並且把它轉換為 PHP 變數
引數
json
待解碼的 json string 格式的字串。
assoc
當該引數為 TRUE 時,將返回 array 而非 object 。
返回值
Returns an object or if the optional assoc parameter is TRUE, an associative array is instead returned.
範例
Example #1 json_decode() 的例子
複製程式碼程式碼如下:
上例將輸出:
複製程式碼程式碼如下:
object(stdClass)#1 (5) {
[“a”] => int(1)
[“b”] => int(2)
[“c”] => int(3)
[“d”] => int(4)
[“e”] => int(5)
}
array(5) {
[“a”] => int(1)
[“b”] => int(2)
[“c”] => int(3)
[“d”] => int(4)
[“e”] => int(5)
}
複製程式碼程式碼如下:
$data='[{“Name”:”a1″,”Number”:”123″,”Contno”:”000″,”QQNo”:””},{“Name”:”a1″,”Number”:”123″,”Contno”:”000″,”QQNo”:””},{“Name”:”a1″,”Number”:”123″,”Contno”:”000″,”QQNo”:””}]’;
echo json_decode($data);
結果為:
複製程式碼程式碼如下:
Array ( [0] => stdClass Object ( [Name] => a1 [Number] => 123 [Contno] => 000 [QQNo] => ) [1] => stdClass Object ( [Name] => a1 [Number] => 123 [Contno] => 000 [QQNo] => ) [2] => stdClass Object ( [Name] => a1 [Number] => 123 [Contno] => 000 [QQNo] => ) )
可以看出經過 json_decode() 編譯出來的是物件, 現在輸出 json_decode($data,true) 試下
複製程式碼程式碼如下:
echo json_decode($data,true);
結果:
複製程式碼程式碼如下:
Array ( [0] => Array ( [Name] => a1 [Number] => 123 [Contno] => 000 [QQNo] => ) [1] => Array ( [Name] => a1 [Number] => 123 [Contno] => 000 [QQNo] => ) [2] => Array ( [Name] => a1 [Number] => 123 [Contno] => 000 [QQNo] => ) )
可以看出 json_decode($data,true) 輸出的一個關聯陣列, 由此可知 json_decode($data)輸出的是物件, 而 json_decode(“$arr”,true) 是把它強制生成 PHP 關聯陣列.
2.json_encode()
json_encode
(PHP 5 >= 5.2.0, PECL json >= 1.2.0)
json_encode — 對變數進行 JSON 編碼
Report a bug 説明
string json_encode ( mixed $value [, int $options = 0 ] )
返回 value 值的 JSON 形式
Report a bug 引數
value
待編碼的 value ,除了 resource 型別之外,可以為任何資料型別
該函式只能接受 UTF-8 編碼的資料
options
由以下常量組成的二進位制掩碼: JSON_HEX_QUOT, JSON_HEX_TAG, JSON_HEX_AMP, JSON_HEX_APOS, JSON_NUMERIC_CHECK, JSON_PRETTY_PRINT, JSON_UNESCAPED_SLASHES, JSON_FORCE_OBJECT, JSON_UNESCAPED_UNICODE.
Report a bug 返回值
編碼成功則返回一個以 JSON 形式表示的 string 或者在失敗時返回 FALSE 。
Report a bug 更新日誌
版本 説明
5.4.0 options 引數增加常量: JSON_PRETTY_PRINT, JSON_UNESCAPED_SLASHES, 和 JSON_UNESCAPED_UNICODE 。
5.3.3 options 引數增加常量:JSON_NUMERIC_CHECK 。
5.3.0 增加 options 引數.
Report a bug 範例
Example #1 A json_encode() 的例子
複製程式碼程式碼如下:
1,’b’=>2,’c’=>3,’d’=>4,’e’=>5);
echo json_encode($arr);
?>
以上例程會輸出:
複製程式碼程式碼如下:
{“a”:1,”b”:2,”c”:3,”d”:4,”e”:5}
Example #2 json_encode() 函式中 options 引數的用法
複製程式碼程式碼如下:
’,”‘bar’”,’”baz”‘,’&blong&’, “xc3xa9”);
echo “Normal: “, json_encode($a), “n”;
echo “Tags: “, json_encode($a, JSON_HEX_TAG), “n”;
echo “Apos: “, json_encode($a, JSON_HEX_APOS), “n”;
echo “Quot: “, json_encode($a, JSON_HEX_QUOT), “n”;
echo “Amp: “, json_encode($a, JSON_HEX_AMP), “n”;
echo “Unicode: “, json_encode($a, JSON_UNESCAPED_UNICODE), “n”;
echo “All: “, json_encode($a, JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_AMP | JSON_UNESCAPED_UNICODE), “nn”;
$b = array();
echo “Empty array output as array: “, json_encode($b), “n”;
echo “Empty array output as object: “, json_encode($b, JSON_FORCE_OBJECT), “nn”;
$c = array(array(1,2,3));
echo “Non-associative array output as array: “, json_encode($c), “n”;
echo “Non-associative array output as object: “, json_encode($c, JSON_FORCE_OBJECT), “nn”;
$d = array(‘foo’ => ‘bar’, ‘baz’ => ‘long’);
echo “Associative array always output as object: “, json_encode($d), “n”;
echo “Associative array always output as object: “, json_encode($d, JSON_FORCE_OBJECT), “nn”;
?>
以上例程會輸出:
複製程式碼程式碼如下:
Normal: [“
Tags: [“u003Cfoou003E”,”‘bar’”,””baz””,”&blong&”,”u00e9″]
Apos: [“
Quot: [“
Amp: [“
Unicode: [“
All: [“u003Cfoou003E”,”u0027baru0027″,”u0022bazu0022″,”u0026blongu0026″,”é”]
Empty array output as array: []
Empty array output as object: {}
Non-associative array output as array: [[1,2,3]]
Non-associative array output as object: {“0”:{“0″:1,”1″:2,”2”:3}}
Associative array always output as object: {“foo”:”bar”,”baz”:”long”}
Associative array always output as object: {“foo”:”bar”,”baz”:”long”}
Example #3 連續與非連續陣列示例
複製程式碼程式碼如下:
”foo”, 2=>”bar”, 3=>”baz”, 4=>”blong”);
var_dump(
$nonsequential,
json_encode($nonsequential)
);
echo PHP_EOL.” 刪除一個連續陣列值的方式產生的非連續陣列”.PHP_EOL;
unset($sequential[1]);
var_dump(
$sequential,
json_encode($sequential)
);
?>
以上例程會輸出:
複製程式碼程式碼如下:
連續陣列
array(4) {
[0]=>
string(3) “foo”
[1]=>
string(3) “bar”
[2]=>
string(3) “baz”
[3]=>
string(5) “blong”
}
string(27) “[“foo”,”bar”,”baz”,”blong”]”
非連續陣列
array(4) {
[1]=>
string(3) “foo”
[2]=>
string(3) “bar”
[3]=>
string(3) “baz”
[4]=>
string(5) “blong”
}
string(43) “{“1″:”foo”,”2″:”bar”,”3″:”baz”,”4″:”blong”}”
刪除一個連續陣列值的方式產生的非連續陣列
array(3) {
[0]=>
string(3) “foo”
[2]=>
string(3) “baz”
[3]=>
string(5) “blong”
}
string(33) “{“0″:”foo”,”2″:”baz”,”3″:”blong”}”
複製程式碼程式碼如下:
$obj->Name= ‘a1′;$obj->Number =’123’;
$obj->Contno= ‘000’;
echo json_encode($obj);
結果為:
複製程式碼程式碼如下:
{“Name”:”a1″,
“Number”:”123″,
“Contno”:”000″
}
可以看出 json_encode() 和 json_decode() 是編譯和反編譯過程,注意 json 只接受 utf-8 編碼的字元,所以 json_encode() 的引數必須是 utf-8 編碼,否則會得到空字元或者 null 。