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

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