Created
March 24, 2013 18:21
-
-
Save TiuTalk/5232923 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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