這2個(gè)函數(shù)json_encode()該函數(shù)主要用來(lái)將數(shù)組和對(duì)象
2021-01-31
PHP從5.2版本開(kāi)始,原生提供json_encode()和json_decode()函數(shù)。前者用于編碼,后者用于解碼。讓我們?cè)谙旅娣治鲞@兩個(gè)功能
json_encode()
此函數(shù)主要用于將數(shù)組和對(duì)象轉(zhuǎn)換為json格式。
代碼如下:
$ arr = array('a'=>'a','b'=>'b','c'='c'php json encode 編碼,'d'=>'d','e'='e' );
echo json_encode($ arr);
輸出結(jié)果:
json僅接受utf-8編碼的字符,json_encode()的參數(shù)必須為utf-8編碼。
代碼如下:
班級(jí)人
{
公共$ name;
公共年齡;
公共$ height;
函數(shù)__construct($ name,$ age,$ height)
{
$ this-> name = $ name;
$ this-> age = $ age;
$ this-> height = $ height;
}
}
$ obj =新人(“ zhangsan”,20,100);
$ foo_json = json_encode($ obj);
echo $ foo_json;
輸出結(jié)果:
當(dāng)類(lèi)中的屬性是私有變量時(shí),將不會(huì)輸出。
json_decode()
此函數(shù)用于將json文本轉(zhuǎn)換為相應(yīng)的PHP數(shù)據(jù)結(jié)構(gòu)。
復(fù)制代碼,代碼如下:
$ json ='{“ a”:“ hello”,“ b”:“ world”,“ c”:“ zhangsan”,“ d”:20,“ e”:170}';
var_dump(json_decode($ json));
輸出結(jié)果:
在通常情況下,json_decode()始終返回一個(gè)PHP對(duì)象。
轉(zhuǎn)換為數(shù)組:
代碼如下:
$ json ='{“ a”:“ hello”,“ b”:“ world”,“ c”:“ zhangsan”,“ d”:20,“ e”:170}';
var_dump(json_decode($ jsonphp json encode 編碼,ture));