Last active
May 23, 2017 22:12
-
-
Save YurePereira/a9e129e98785ea56270b152834d15a2c to your computer and use it in GitHub Desktop.
Usando o laço de repetição FOREACH, primeira sintaxe.
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 | |
| $frults = array( | |
| 'Pineapple', | |
| 'Cashew', | |
| 'Apple', | |
| 'Strawberry' | |
| ); | |
| foreach ($frults as $value) { | |
| echo $value . PHP_EOL; | |
| } | |
| /* | |
| Saída: | |
| Pineapple | |
| Cashew | |
| Apple | |
| Strawberry | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment