Я хотел бы знать, как взять значение «Tile32px» из этого Json:
(http://360api.chary.us/?gamertag=superdeder) с PHP.
Я попробовал так:
<?php
$json = file_get_contents('http://360api.chary.us/?gamertag=superdeder');
$gamer = json_decode($json);
echo $gamer->Gamertag;
echo "<br><br>";
$data = json_decode($json, true);
$users=$data['LastPlayed'];
foreach ($users as $user)
{
echo $user['Title'];
echo "<br>";
}
echo "<br>";
$users2=$data['Pictures'];
foreach ($users2 as $user2)
{
echo $user2['Tile32px'];
echo "<br>";
}
?>
Это результат:
SuperDeder
Skyrim
Grand Theft Auto V
FIFA 13
Черный
WSOP: Full House Pro
час
час
час
Большое спасибо.
Андреа.
Попробуйте так.
<?php
$json = file_get_contents('http://360api.chary.us/?gamertag=superdeder');$data = json_decode($json, true);foreach ($data['LastPlayed'] as $val)
{
echo $val['Pictures']['Tile32px'];
echo "<br>";
}
?>
Попробуй это
<?php
$json = file_get_contents('http://360api.chary.us/?gamertag=superdeder');
$gamer = json_decode($json, true);
$users = $gamer['LastPlayed'];
foreach($users as $user){
echo $user['Pictures']['Tile32px'];
echo '<br>';
}
?>