freeCodeCamp/guide/russian/php/while/index.md

23 lines
762 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: While Loop
localeTitle: Пока цикл
---
## В то время как петли
В `while` цикл выполняется операторы внутри цикла до тех пор , пока условие удовлетворяется петли.
### Синтаксис:
```php
$x = 0;
while ($x < 11) {
statement1;
$x++;
}
```
**Примечание** . Блок-код должен иметь оператор, который изменяет или увеличивает условие. В противном случае может возникнуть бесконечный цикл.
### Дополнительная информация:
[PHP while Loop](http://php.net/manual/en/control-structures.while.php)