我一直在尋找遍佈interwebz的一個簡單的答案,但找不到任何。所以,問題是:PHP Json查看是否存在值
我打算解碼一些JSON來查看是否存在一個值;儘管如此,我認爲我沒有做對。我想檢查appid:730的值是否存在。
這裏的JSON:
{
response: {
game_count: 106,
games: [
{
appid: 10,
playtime_forever: 67
},
{
appid: 730,
playtime_forever: 0
},
{
appid: 368900,
playtime_forever: 0
},
{
appid: 370190,
playtime_forever: 0
},
]
}
}
這就是我想要的:
$json = file_get_contents('JSON URL HERE');
$msgArray = json_decode($json, true);
if (appid: 730 exists) {
...
}
謝謝,希望我解釋不夠。
1.在foreach中使用'$ msgArray',然後在tree下查找'games'數組。 –
'json'沒有迴應... [無效的Json](https://3v4l.org/ld9Oa) –