如果您使用的
json_depre($json,true);是-true表示将js对象的结果作为关联数组返回-那么您所要做的就是
$user_info= $jsonDepred['USER'];没有
array()强制转换的原因
json_depre。
如果您选择省略第二个布尔参数,那么您将获得一个stdClass,
$jsonDepred->USER;它将为您服务

如果您使用的
json_depre($json,true);是-true表示将js对象的结果作为关联数组返回-那么您所要做的就是
$user_info= $jsonDepred['USER'];没有
array()强制转换的原因
json_depre。
如果您选择省略第二个布尔参数,那么您将获得一个stdClass,
$jsonDepred->USER;它将为您服务