我需要遍历这些数组并将值放在各自的表中,表名将是medal + key,即medal117
这是脚本:
<?php
//incude sql database connection
include_once('sql.php');
//include api key
include_once('api.php');
$gameId = "448434948";
$gamertag = "Jam1efoster";
$GetGameDetails = "http://www.bungie.net/api/reach/reachapijson.svc/game/details/".$apiKey."/".$gameId;
$output = file_get_contents($GetGameDetails);
$obj = json_decode($output);
//echo $output."<br/>";
foreach($obj->GameDetails->Players as $players) {
if ($players->PlayerDetail->gamertag == $gamertag) {
foreach($players->SpecificMedalCounts as $SpecificMedalCounts) {
$medal = $SpecificMedalCounts;
echo '<pre>'.print_r($medal,1).'</pre>';
}
}
}
?>
目前输出:
stdClass Object
(
[Key] => 117
[Value] => 1
)
stdClass Object
(
[Key] => 2
[Value] => 1
)
stdClass Object
(
[Key] => 85
[Value] => 8
)
stdClass Object
(
[Key] => 101
[Value] => 1
)
答案 0 :(得分:1)
你还在追求更多吗?假设您已经建立了连接数据库。
mysql_query(sprintf(
'INSERT INTO `medal%d` SET `value` = %d', $medal->Key, $medal->Value
));
根据您对问题的评论,这更多是关于访问课程中的属性。
来自以下链接的文档:
在类方法中的属性, 可以访问常量和方法 使用$ this-&gt;属性
形式