我怎样才能在PHP中获取json的价值?

时间:2014-10-27 14:05:35

标签: php json xbox

我想知道,如何使用PHP从这个Json(http://360api.chary.us/?gamertag=superdeder)获取值“gamertag”。

我只打印“superdeder”值。

非常感谢。

安德烈。

1 个答案:

答案 0 :(得分:3)

使用file_get_contents()并将您的JSON转换为json_decode()的对象:

$json = file_get_contents('http://360api.chary.us/?gamertag=superdeder');

$gamer = json_decode($json);
echo $gamer->Gamertag; // SuperDeder

或者,一个数组,通过传递一个真值作为json_decode()的第二个参数:

$gamer = json_decode($json, true);
echo $gamer['Gamertag']; // SuperDeder