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

17 lines
429 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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