json_decode($data,true)输出的一个关联数组,json_decode($data)输出的是对象,而json_decode("$arr",true)是把它强制生成PHP关联数组。
json_encode()和json_decode()是编译和反编译过程,注意json只接受utf-8编码的字符,所以json_encode()的参数必须是utf-8编码,否则会得到空字符或者null。