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

17 lines
429 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Loops
localeTitle: 循环
---
## 循环
循环在PHP中用于根据条件执行重复任务。
条件通常在分析时返回`true``false`
循环将继续运行,直到定义的条件返回`false`
您可以键入`php for` `php while``php do while`以获取有关这些内容的更多信息。
### 更多信息
* [PHP.net - For循环](https://secure.php.net/manual/control-structures.for.php)