Files
freeCodeCamp/guide/portuguese/php/loops/index.md
2018-10-16 21:32:40 +05:30

17 lines
537 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Loops
localeTitle: rotações
---
## rotações
Os loops são usados no PHP para executar tarefas repetidas com base em uma condição.
As condições geralmente retornam `true` ou `false` quando analisadas.
Um loop continuará em execução até que a condição definida retorne `false` .
Você pode digitar `php for` , `php while` ou `php do while` para obter mais informações sobre qualquer um desses.
### Mais Informações
* [PHP.net - For Loops](https://secure.php.net/manual/control-structures.for.php)