Advertisement
Guest User

Avatar Fix

a guest
Apr 6th, 2020
648
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1.         function GetAvatar($steamid64){
  2.             $url = file_get_contents('https://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=DC4A099BA0493A07922FB1445F275D67&steamids='.$steamid64);
  3.             $content = json_decode($url, true);
  4.             return $content['response']['players'][0]['avatarfull'];
  5.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement