Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save YurePereira/7574e0e8efbad3bc3817a46de2b77ce8 to your computer and use it in GitHub Desktop.
Usando o laço de repetição DO-WHILE.
<?php
$contador = 0;
do {//Esse bloco será executado pelo menos uma vez.
echo $contador++ . PHP_EOL;
} while ($contador < 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment