現時点で私が持っているものは次のとおりです。
<?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にまったく慣れていないので、どこが間違っているのかわかりません。