RUVIDEO
Поделитесь видео 🙏

PHP loops: while, do while, for

📁 Обучение 👁️ 17 📅 01.12.2023

Learn PHP loops with NBK Tutor! In this video, you will be learning how to loop using the while loop, the do-while loop, and the for loop! :)

Things to Remember:
- For the while loop, FIRST the condition is checked. Then, if that condition is true, the statements get executed. Next, it checks the condition again and repeats the same process. The loop ends when the condition becomes false.
- Don't forget to increment/decrement counters within a while loop! Otherwise you will get an INFINITE LOOP, which is not a good idea. ;) You don't want things to keep repeating forever.
- The do-while loop FIRST executes the statements within the loop, then checks the condition after the FIRST execution. Then it checks the condition to determine whether to go on with the loop or finish it.
- Thus, the do-while loop statements ALWAYS get executed AT LEAST ONCE.
- The for loop has three sections: initializer; condition; increment/decrement
- The for loop first initializes the counter variable. Then it checks the condition. If that condition is true, the statements within the loop get executed. After all the statements are executed, the counter variable is incremented or decremented. Then the condition is checked to see whether to go on with the loop or finish looping.

My system specs for this video:
- Ubuntu 14.04
- Apache & PHP 5.5.9

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «PHP loops: while, do while, for», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.

Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!

Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.