這是我目前所面對的:如何解析來自API調用的JSON數據?
<?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相當陌生,所以不確定我要出錯的地方。
是的,你正在做正確的'json_decode'。但你想要的究竟是什麼? – GBD
公開發布您的Steam API密鑰違反了Steam API使用條款。您應該編輯您的帖子以儘快將其刪除。 –