Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- error_reporting(0);
- $usuario = $_GET["usuario"];
- $page= file_get_contents("https://steamcommunity.com/id/$usuario");
- $steamPais = explode ('gif">', $page);
- $steamPais = explode ('</div>', $steamPais[1]);
- $texto = $steamPais[0];
- $texto = preg_replace('(Spain)', utf8_encode("España"), $texto);
- $texto = preg_replace('(New York, New York, United States)', utf8_encode("Nueva York, Nueva York, Estados Unidos"), $texto);
- $texto = preg_replace('(United States)', utf8_encode("Estados Unidos"), $texto);
- echo $texto;
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement