PHP json数据互转

#数组或字符串转换为json 
json_encode($str);

#json转换为数组
 json_decode($str,true); #加上true是转换为数组 否则是对象

你可能感兴趣的:(PHP)