Skip to content

Instantly share code, notes, and snippets.

@pvleite
Forked from AlexSJ/jogos.php
Last active August 29, 2015 14:02
Show Gist options
  • Save pvleite/acd314e27885db2bff35 to your computer and use it in GitHub Desktop.
Save pvleite/acd314e27885db2bff35 to your computer and use it in GitHub Desktop.
<?php
foreach(json_decode(file_get_contents("http://worldcup.sfg.io/matches")) as $jogo) {
echo $jogo->status == 'completed' ? $jogo->home_team->country . '(' . $jogo->home_team->goals . ') x (' . $jogo->away_team->goals . ')' . $jogo->away_team->country . '<br>' : '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment