freeCodeCamp/guide/portuguese/php/loops/index.md

17 lines
537 B
Markdown
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

---
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)