好吧,我正在使用Bungie的Halo Reach API。现在我的代码将获得特定玩家的所有游戏ID。
我想将游戏ID存储在mysql数据库中,然后将来如果玩家想要更新数据库,脚本将只获取数据库中尚未存在的游戏ID。
该脚本获取最新页面$iPage = '0';
然后,如果HasMorePages
等于true,则会获得下一页$iPage++
,直到HasMorePages
为false。
每个页面提供25个游戏ID,最后一页可能更少。
所以基本上我想要在首次运行脚本时获取不存在的游戏ID,而不会对API进行不必要的调用。我怎么能这样做?
<?php
include_once('sql.php'); // MySQL Connection
include_once('api.php'); // API unique identifer string
$gamertag = 'jam1efoster'; // Gamertag
$variant = 'Unknown'; // Unknown gets all game variants
$iPage = '0'; // 0 is the most recent page
while(!$endPages == true){
$GetGameHistory = "http://www.bungie.net/api/reach/reachapijson.svc/player/gamehistory/".$apiKey."/".rawurlencode(strtolower($gamertag))."/".$variant."/".$iPage;
$output = file_get_contents($GetGameHistory);
$obj = json_decode($output);
//echo $output;
$mPages = $obj->HasMorePages;
if($mPages == false){$endPages = true;}
foreach($obj->RecentGames as $recentgames) {
$gameId = $recentgames->GameId;
//echo $gameId.'<br />';
}
//echo $iPage.'<br />';
$iPage++;
}
?>
答案 0 :(得分:2)
考虑到我理解你要做什么以及你在问什么。试试这段代码:
<?php
include_once('sql.php'); // MySQL Connection
include_once('api.php'); // API unique identifer string
$gamertag = 'jam1efoster'; // Gamertag
$variant = 'Unknown'; // Unknown gets all game variants
$iPage = '0'; // 0 is the most recent page
// get current ids
$result=mysql_query('SELECT ALL CURRENT IDS');// PUT YOUR SQL HERE !
$oldIds=array();
$newIds=array();
while($row=mysql_fetch_array($result))$oldIds[]=$row['id'];// might be different in your scenario
// get all ids, unfortunately
for(;;){
$GetGameHistory = "http://www.bungie.net/api/reach/reachapijson.svc/player/gamehistory/".$apiKey."/".rawurlencode(strtolower($gamertag))."/".$variant."/".$iPage;
$output = file_get_contents($GetGameHistory);
$obj = json_decode($output);
// get fresh ids
foreach($obj->RecentGames as $recentgames) {
if(in_array($recentgames->GameId, $oldIds))continue;// we already have this id
$newIds[]=$recentgames->GameId;
}
if(!$obj->HasMorePages)break;// no more pages? break!
$iPage++;
}
var_dump($newIds);
?>
我不熟悉bungie可能会将游戏推向api的方法。如果订购,请评论。我会修改我的代码。如果它们是任意的,那就是一种艰难的运气。