Skip to content

Instantly share code, notes, and snippets.

@TiuTalk
Created March 24, 2013 18:21
Show Gist options
  • Save TiuTalk/5232923 to your computer and use it in GitHub Desktop.
Save TiuTalk/5232923 to your computer and use it in GitHub Desktop.
<?php
// Pontuação dos dois times em cada partida
$partidas = [
[1, 2],
[3, 4],
[5, 1],
];
foreach ($partidas as list($timeA, $timeB)) {
echo "Time A {$timeA}x{$timeB} Time B" . '<br />';
}
/*
Time A 1x2 Time B
Time A 3x4 Time B
Time A 5x1 Time B
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment