这是我目前所拥有的:
<?php
$string = file_get_contents("http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=##################################&steamids=76561198040884950");
$json=json_decode($string);
?>
<script type="text/javascript">
alert("<?php echo $json; ?>");
</script>
在这个阶段我要做的就是接收 JSON 信息。我对 jQuery 和 PHP 很陌生,所以不确定我哪里出错了。