标签:bsp 必须 object inf 三方 decode obj info json
碰到一个问题,第三方接口,返回了一个对象,我直接json_decode($arr,true); 返回的NULL,原因:
json_decode();处理的是json字符,也就是说必须是json_encode()处理的数据,而不是object,后面加true返回的是数组,别记混了。
解决办法:
$business_info=json_decode(json_encode($result), True);
标签:bsp 必须 object inf 三方 decode obj info json
原文地址:https://www.cnblogs.com/yangzailu/p/9221020.html