将 JSON 解码为 xbox 实时图像脚本的数组?
我正在尝试将 Xbox Live 数据的 JSON
文件转换为可以在 PHP
生成的图像中使用的变量。我的 JSON 文件位于: http://www.xboxgamercard.org/gamercard/test3/xbox .php
我已经尝试过这个:
$request_url = 'xbox.php';
$json = file_get_contents($request_url);
$decode = json_decode($json, true);
var_dump($decode['gamertag'][0]);
但它只返回NULL
。
我想使用如下所示的 JSON:
$gamertag = $data['Gamertag'];
echo $gamertag;
I'm trying to turn a JSON
file of Xbox Live data into variables that I can use in a PHP
generated image. My JSON file is here: http://www.xboxgamercard.org/gamercard/test3/xbox.php
I have tried this:
$request_url = 'xbox.php';
$json = file_get_contents($request_url);
$decode = json_decode($json, true);
var_dump($decode['gamertag'][0]);
but it just returns NULL
.
I would like to use the JSON as shown here:
$gamertag = $data['Gamertag'];
echo $gamertag;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要添加完整的网址,例如:
You need to add the full url eg: