Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save YurePereira/5cc0c7a46fa0ded3f0adfc654bc06d8d to your computer and use it in GitHub Desktop.
Exemplo 1 usando laço de repetição FOR, primeira expressão.
<?php
for ($list = range(1, 5); count($list) > 0;) {
echo array_pop($list) . PHP_EOL;
}
/*
Saída:
5
4
3
2
1
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment