Json 解码 - PHP

Json Decode - PHP

我正在尝试从 API 解码 json,但是当我尝试代码时:

 <?php
   $json = file_get_contents("http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=270EBE5B0B2501EE0FC750196325406B&steamids=76561198260508210");
   $decode = json_decode($json,1);
   echo $decode['realname'];
  ?>

这出现:

Notice: Undefined index: realname in C:\Program Files (x86)\EasyPHP-Devserver-16.1\eds-www\CSGrow\index.php on line 26

因为realname不在数组的主体部分。你应该这样看:

json -> "response" -> "players"[0] -> "realname"

所以你需要做这样的事情:

$realname = $decode->response->players[0]->realname;

当您仔细检查 API 响应时,返回值是:

{
  "response": {
    "players": [
      {
        "steamid": "76561198260508210",
        "communityvisibilitystate": 3,
        "profilestate": 1,
        "personaname": "xGrow ◔ ⌣ ◔",
        "lastlogoff": 1487378601,
        "commentpermission": 1,
        "profileurl": "http://steamcommunity.com/id/xgrow/",
        "avatar": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/9b/9bc4b0e198dfcc919cbcc781beb5886acaa9daee.jpg",
        "avatarmedium": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/9b/9bc4b0e198dfcc919cbcc781beb5886acaa9daee_medium.jpg",
        "avatarfull": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/9b/9bc4b0e198dfcc919cbcc781beb5886acaa9daee_full.jpg",
        "personastate": 1,
        "realname": "Pedro",
        "primaryclanid": "103582791434436747",
        "timecreated": 1447526746,
        "personastateflags": 0,
        "loccountrycode": "PT"
      }
     ]
   }
}

创建播放器对象,代码如下:

<?php $json = file_get_contents("http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=270EBE5B0B2501EE0FC750196325406B&steamids=76561198260508210");
 $decode = json_decode($json,1);

 $player = $decode['response']['players'][0];

 echo $player['realname'];
?>