Skip to content

Instantly share code, notes, and snippets.

@YurePereira
Last active May 23, 2017 22:12
Show Gist options
  • Select an option

  • Save YurePereira/a9e129e98785ea56270b152834d15a2c to your computer and use it in GitHub Desktop.

Select an option

Save YurePereira/a9e129e98785ea56270b152834d15a2c to your computer and use it in GitHub Desktop.
Usando o laço de repetição FOREACH, primeira sintaxe.
<?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