zl程序教程

您现在的位置是:首页 >  其他

当前栏目

【笔记php】如何使用PHP从JSON提取数据?

2023-02-26 09:50:47 时间

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

本文共 35 个字数,平均阅读时长 ≈ 1分钟