$json='{"results":[{"location":{"id":"WW56FQXV5ZHB","name":"徐州","country":"CN","path":"徐州,徐州,江蘇,中國","timezone":"Asia/Shanghai","timezone_offset":"+08:00"},"now":{"text":"陰","code":"9","temperature":"20"},"last_update":"2017-04-15T22:15:00+08:00"}]}';
$dejson=json_decode($json,true);
echo $dejson[now][text];//錯誤
Please tell me how to read the text value in this array and how to output it, Crab~
echo $dejson['results'][0]['now']['text'];
The code is as above. In fact, you yourself
var_dump()
一下$dejson
know how to choose the value you want.