fork download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5. $json = '{
  6. "Online": {
  7. "Count": 2,
  8. "Players": {
  9. "76561197987660961": "-GunnRunner-",
  10. "76561198139941699": "Danjo1313"
  11. }
  12. }
  13. }';
  14.  
  15. $json = json_decode($json, TRUE);
  16.  
  17. echo "Players Online: ".$json['Online']["Count"]."\n";
  18. foreach($json['Online']['Players'] as $id => $player){
  19. echo "Player: ". $player."\n";
  20. echo "Player ID: ". $id."\n";
  21. echo "============================================\n";
  22. }
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
Players Online: 2
Player: -GunnRunner-
Player ID: 76561197987660961
============================================
Player: Danjo1313
Player ID: 76561198139941699
============================================