Advertisement
irokemr

Steam avatar php

Dec 29th, 2020
1,714
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. error_reporting(0);
  4.  
  5.  
  6.  
  7. $usuario = $_GET["usuario"];
  8.  
  9. $page= file_get_contents("https://steamcommunity.com/id/$usuario");
  10.  
  11. $steamAvatar = explode ('<link rel="image_src" href="', $page);
  12. $steamAvatar = explode ('"', $steamAvatar[1]);
  13.  
  14.  
  15. echo $steamAvatar[0];
  16.  
  17.  
  18. ?>
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement