Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // Get User Profile Data Using ID
  2. $xml = @simplexml_load_file("http://steamcommunity.com/profiles/$steamid/?xml=1");
  3. if(!empty($xml) && !isset($xml->error)) {
  4. $username = $xml->steamID; // Example: steamcommunity.com/profiles/76561198077095031/?xml=1
  5. } else {
  6. $username = "Not Found"; // Example: steamcommunity.com/profiles/0/?xml=1
  7. }
  8.  
  9.  
  10. return $username;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement