为了账号安全,请及时绑定邮箱和手机立即绑定

php 读取 json 里面的字段内容

php 读取 json 里面的字段内容

PHP C
不负相思意 2022-03-03 07:07:10
{"count":{"左脑":2,"右脑":3,"全脑":2,"全脑1":1},"score":{"左脑":8,"右脑":14,"全脑":15,"全脑1":8},"pingjun":{"左脑":4,"右脑":4.6666666666667,"全脑":7.5,"全脑1":8}} 如何读取 json里面的 pingjun这个值
查看完整描述

2 回答

?
杨__羊羊

TA贡献1943条经验 获得超7个赞

示例代码如下:


<?phpheader("Content-type: text/html; charset=utf-8");$postArray '[{"count":{"左脑":2,"右脑":3,"全脑":2,"全脑1":1},"score":{"左脑":8,"右脑":14,"全脑":15,"全脑1":8},"pingjun":{"左脑":4,"右脑":4.6666666666667,"全脑":7.5,"全脑1":8}}]';$de_json = json_decode($postArray, true);echo $de_json[0]['pingjun']['左脑'];?>

json 数组结构如图:



查看完整回答
反对 回复 2022-03-07
?
森栏

TA贡献1810条经验 获得超5个赞

$a = '{"count":{"左脑":2,"右脑":3,"全脑":2,"全脑1":1},"score":{"左脑":8,"右脑":14,"全脑":15,"全脑1":8},"pingjun":{"左脑":4,"右脑":4.6666666666667,"全脑":7.5,"全脑1":8}}';
$b = json_decode($a);
$status = $b->pingjun;

查看完整回答
反对 回复 2022-03-07
  • 2 回答
  • 0 关注
  • 379 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信