Last active
May 23, 2017 05:02
-
-
Save YurePereira/48a71067394808edd81ea9cd63cb3c05 to your computer and use it in GitHub Desktop.
Usando o laço de repetição FOR, sintaxe alternativa.
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 | |
| for ($i = 0; $i < 5; $i++): | |
| echo $i . PHP_EOL; | |
| endfor; | |
| /* | |
| Saída: | |
| 0 | |
| 1 | |
| 2 | |
| 3 | |
| 4 | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment