2022年8月26日16点36分
如何使用PHP从JSON提取数据?
不多bb,直接上示例
一
$Json = ' { "type": "fish9.cn", "name": "fish9.cn" }';
$fish = Json_decode($Json,true);
echo $fish["type"]; //结果fish9.cn
二
$Json = '{ "type":"fish9.cn", "name":"fish9.cn", "daily":[{ "text1":"1", "text2":"2", "text3":"3", "text4":"4", "text5":"5" },{ "text1":"6", "text2":"7", "text3":"8", "text4":"9", "text5":"10" } ] }';
$fish = Json_decode($Json,true);
echo '输出结果为'.$fish["daily"][0]["text3"]; //输出结果为3