Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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