search

Home  >  Q&A  >  body text

PHP reading json array problem

$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~

为情所困为情所困2754 days ago596

reply all(1)I'll reply

  • 漂亮男人

    漂亮男人2017-05-16 13:16:03

    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.

    reply
    0
  • Cancelreply