dongpo1846 2014-10-28 10:55
浏览 84
已采纳

如何在php中提取这个json的值?

I would like to know, how take the value "Tile32px" from this Json: (http://360api.chary.us/?gamertag=superdeder) with PHP.

I tried this way:

<?php    
$json = file_get_contents('http://360api.chary.us/?gamertag=superdeder');
$gamer = json_decode($json);
echo $gamer->Gamertag;
echo "<br><br>";  

$data = json_decode($json, true);

$users=$data['LastPlayed'];
foreach ($users as $user)
    {
     echo $user['Title'];
     echo "<br>";
    }
echo "<br>";        
$users2=$data['Pictures'];
foreach ($users2 as $user2)
{
     echo $user2['Tile32px'];
     echo "<br>";
}       
?>

This is the result:

SuperDeder

Skyrim Grand Theft Auto V FIFA 13 L.A. Noire WSOP: Full House Pro

h h h

Thanks a lot.
Andrea.

  • 写回答

2条回答 默认 最新

  • dongliling6336 2014-10-28 10:59
    关注

    Try this way.

    <?php
    
    $json = file_get_contents('http://360api.chary.us/?gamertag=superdeder');
    
    
    $data = json_decode($json, true);
    
    
    foreach ($data['LastPlayed'] as $val)
        {
         echo $val['Pictures']['Tile32px'];
         echo "<br>";
        }   
    
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 Oracle中如何从clob类型截取特定字符串后面的字符
  • ¥15 想通过pywinauto自动电机应用程序按钮,但是找不到应用程序按钮信息
  • ¥15 MATLAB中streamslice问题
  • ¥15 如何在炒股软件中,爬到我想看的日k线
  • ¥15 51单片机中C语言怎么做到下面类似的功能的函数(相关搜索:c语言)
  • ¥15 seatunnel 怎么配置Elasticsearch
  • ¥15 PSCAD安装问题 ERROR: Visual Studio 2013, 2015, 2017 or 2019 is not found in the system.
  • ¥15 (标签-MATLAB|关键词-多址)
  • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
  • ¥500 52810做蓝牙接受端