PHP reading json array problem
为情所困
为情所困 2017-05-16 13:14:03
0
1
578
$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~

为情所困
为情所困

reply all(1)
漂亮男人
echo $dejson['results'][0]['now']['text'];

The code is as above. In fact, you yourselfvar_dump()一下$dejson know how to choose the value you want.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!