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

无法从 json 获得正确的 api 结果(使用 json_decode)

无法从 json 获得正确的 api 结果(使用 json_decode)

PHP
肥皂起泡泡 2022-07-22 16:07:58
我想从 API 打印结果......但它不工作......我不知道有什么问题我试图这样做但得到了这个并且它不工作:<?php$api = 'https://api.battlemetrics.com/servers/'; // the main API for servers.$server = '5090469'; // the number of the server you will get the info from most of thime something like 5484856.$api_full = $api . $server; // bringing them together.$json = file_get_contents("$api_full"); // Putting the content of the file in a variable.$response = json_decode($json, true); // decode the JSON feedif ($response['data']['status'] == "online") {                                    echo "ONLINE";                                 } else {                                    echo "OFFLINE";                                };?>如果您想查看 json 响应,请附加以下链接:https ://api.battlemetrics.com/servers/5090469提前感谢您的提示和帮助。
查看完整描述

1 回答

?
慕村9548890

TA贡献1884条经验 获得超4个赞

看起来您只是在 if 语句中缺少一个键。

它应该是: if($response['data']['attributes']['status'] == "online")


查看完整回答
反对 回复 2022-07-22
  • 1 回答
  • 0 关注
  • 84 浏览

添加回答

举报

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