Skip to content

Instantly share code, notes, and snippets.

@YurePereira
Last active May 24, 2017 00:13
Show Gist options
  • Select an option

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

Select an option

Save YurePereira/fd30c3bcd6f04ad9363808bc825f50be to your computer and use it in GitHub Desktop.
Usando o laço de repetição WHILE.
<?php
$contador = 0;
while ($contador < 5) {
echo $contador++ . PHP_EOL;
}
/*
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