gpt4 book ai didi

php - json_encode、json_decode、数组?

转载 作者:行者123 更新时间:2023-12-04 05:44:00 26 4
gpt4 key购买 nike

我正在尝试进入 data来自

{
"data": [{
"media_count": 3045,
"name": "snow",
},
{
"media_count": 79,
"name": "snowman",
},
{
"media_count": 40,
"name": "snowday",
},
{
"media_count": 29,
"name": "snowy",
}]
}

我一直在尝试,使用:
$obj = json_decode($res[0], true);
echo $obj['data']; //this returns an array

我也试过这个:
$obj = json_encode($res[0], true);
echo $obj; // this returns json, but not inside `data`

"data": [{
"media_count":54373,
"name":"test"
}]

我只想进去 data .我该怎么做?

提前致谢!

更新:对不起,我想要json格式

最终,我只想看到
{
"media_count":54373,
"name":"test"
}

类似的东西

最佳答案

使用 json_encode()得到你想要的:

$obj = json_decode($res[0], true);
echo json_encode($obj['data']);

关于php - json_encode、json_decode、数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10926297/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com