Guest User

Untitled

a guest
Sep 3rd, 2016
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2. $str = file_get_contents("put your steam profile link here");
  3. $steam = "steam://";
  4. $arr = explode($steam, $str) ;
  5. $game_id = end($arr);
  6.  
  7. $loc = "Location: ";
  8.  
  9. $after = " class";
  10.  
  11. $res = array_shift(explode('class', $game_id));
  12.  
  13. $aftersteam = $steam . $res;
  14.  
  15. $reversed = strrev($aftersteam);
  16.  
  17. $removed = substr($reversed, 2);
  18.  
  19. $done = strrev($removed);
  20.  
  21. $redict = $loc . $done;
  22.  
  23. header($redict);
  24.  
  25. echo $done;
  26.  
  27. ?>
Add Comment
Please, Sign In to add comment