0

好吧,我正在使用 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++;
}

?>
4

1 回答 1

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 的方法。如果他们被订购,评论。我会修改我的代码。如果他们是任意的,那么运气不好。

于 2011-04-13T20:25:07.590 回答