Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. //Get JSON text file (Steam API)
  2. $json = file_get_contents('http://store.steampowered.com/api/appdetails?appids=57690');
  3.  
  4. //Decode JSON
  5. $game_json = json_decode($json, true);
  6.  
  7. //Target game name and echo it
  8. echo $game_json['name'];
  9.  
  10. {"57690":{"success":true,"data":{"type":"game","name":"Tropico 4: Steam Special Edition"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement