json_decode 与 json_encode

Posted 静小妞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json_decode 与 json_encode相关的知识,希望对你有一定的参考价值。

一:json_decode ( string $json [, bool $assoc=FALSE [, int $depth= 512 [, int $options= 0 ]]])

①:$json解析编码为UTF-8编码的字符串

②:$assoc:当该参数为 TRUE 时,将返回数组,FALSE 时返回对象

③:$depth 为递归深度

④:$options   JSON解码选项的位掩码。目前有两种支持的选项。第一个是JSON_BIGINT_AS_STRING允许将大整数转换为字符串而不是浮点数,这是默认值。第二个选项是JSON_OBJECT_AS_ARRAY ,它和设置相同的效果assoc来 TRUE

json_encode()只将索引数组(indexed array)转为数组格式,而将关联数组(associative array)转为对象格式。

 

二:json_encode  不转义中文汉字的方法

json_encode($data, JSON_UNESCAPED_UNICODE); //必须php5.4+ 

①:$array = array(‘lixi‘=>‘李茜‘);  var_dump(json_encode($array,JSON_UNESCAPED_UNICODE));die;    打印得到  string(17) "{"lixi":"李茜"}"

②:$array = array(‘lixi‘=>‘李茜‘);  var_dump(json_encode($array));die;   打印得到  string(23) "{"lixi":"u674eu831c"}"

以上是关于json_decode 与 json_encode的主要内容,如果未能解决你的问题,请参考以下文章

json_decode 与 json_encode

PHP中json_encode与json_decode

json_encode()与json_decode()的区别

php model与json_encode/json_decode

php中json_decode()和json_encode()的使用方法

PHP中json_decode()和json_encode()的使用方法