Skip to content

Instantly share code, notes, and snippets.

@gothick
Created December 22, 2014 20:38
Show Gist options
  • Save gothick/406a627041a951747afc to your computer and use it in GitHub Desktop.
Save gothick/406a627041a951747afc to your computer and use it in GitHub Desktop.
<?php
$myarray = array('response' => array('players' => array(array(
'SteamId' => '12345678901234567',
'CommunityBanned' => false,
'VACBanned' => true,
'NumberOfVACBans' => 1,
'DaysSinceLastBan' => 1,
'EconomyBan' => 'none'
))));
// Prints "BANNED"
print ($myarray['response']['players'][0]['VACBanned'] ? 'BANNED' : 'NOT BANNED');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment