php如何读取json中的数据?

2024-12-27 20:55:35
推荐回答(3个)
回答1:

先使用json_decode()函数解析成数组,在用变量等于解析出来的数组
$test=json_decode("json数据");
输出 echo $test->key;

回答2:

print_r($obj->taobaoke_items_get_response->taobaoke_items->taobaoke_item)

回答3:

print_r(json_encode($arr));exit;