Last active
May 23, 2017 03:02
-
-
Save YurePereira/5cc0c7a46fa0ded3f0adfc654bc06d8d to your computer and use it in GitHub Desktop.
Exemplo 1 usando laço de repetição FOR, primeira expressão.
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 ($list = range(1, 5); count($list) > 0;) { | |
| echo array_pop($list) . PHP_EOL; | |
| } | |
| /* | |
| Saída: | |
| 5 | |
| 4 | |
| 3 | |
| 2 | |
| 1 | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment