fork download
  1. <?php
  2. /*
  3. {
  4. "ISteamClient": 0,
  5. "ISteamFriends": 0,
  6. "ISteamUser": 0,
  7. "IEconItems_440": 0,
  8. "IEconItems_730": 0,
  9. "ISteamGameCoordinator_440": 0,
  10. "ISteamGameCoordinator_570": 0
  11. }
  12. */
  13.  
  14. $json_file = file_get_contents("http://s...content-available-to-author-only...g.es/api");
  15. $json_str = json_decode($json_file, true);
  16.  
  17. $clientesteam = $json_str["ISteamClient"];
  18.  
  19. echo "O Cliente Steam esta " . $clientesteam == 0 ? "Online" : "Offline";
  20. ?>
Success #stdin #stdout #stderr 0.02s 24480KB
stdin
Standard input is empty
stdout
Online
stderr
PHP Warning:  file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/NB3DFk/prog.php on line 14
PHP Warning:  file_get_contents(http://s...content-available-to-author-only...g.es/api): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/NB3DFk/prog.php on line 14