美文网首页
json_decode()和json_encode()--简述

json_decode()和json_encode()--简述

作者: 可乐_加冰_ | 来源:发表于2019-03-05 16:14 被阅读0次

①:json_decode()

可对 JSON 格式的字符串进行编码

$json = json_decode($data, true);        //$data  已经是 json 格式的数据

assoc :当该参数为 TRUE 时,将返回 array 而非 object 。 

②:json_encode()

对变量(数组)进行 JSON 编码

$data = array(  'id' => 1,

                         'name' =>'我是测试'

                         );

var_dump(json_encode($data));

相关文章

网友评论

      本文标题:json_decode()和json_encode()--简述

      本文链接:https://www.haomeiwen.com/subject/yurouqtx.html