Dutch PHP Conference 2023 - Call for Papers

do-while

(PHP 4, PHP 5, PHP 7, PHP 8)

Цикл do-while очень похож на цикл while, с тем отличием, что истинность выражения проверяется в конце итерации, а не в начале. Главное отличие от обычного цикла while в том, что первая итерация цикла do-while гарантированно выполнится (истинность выражения проверяется в конце итерации), тогда как она может не выполниться в обычном цикле while (истинность выражения которого проверяется в начале выполнения каждой итерации, и если изначально имеет значение false, то выполнение цикла будет прервано сразу).

Есть только один вариант синтаксиса цикла do-while:

<?php
$i
= 0;
do {
echo
$i;
} while (
$i > 0);
?>

В примере цикл будет выполнен ровно один раз, так как после первой итерации, когда проверяется истинность выражения, она будет вычислена как false ($i не больше 0) и выполнение цикла прекратится.

Опытные пользователи С могут быть знакомы с другим использованием цикла do-while, которое позволяет остановить выполнение хода программы в середине блока, для этого нужно обернуть нужный блок кода вызовом do-while (0) и использовать break. Следующий фрагмент кода демонстрирует этот подход:

<?php
do {
if (
$i < 5) {
echo
"i ещё недостаточно велико";
break;
}
$i *= $factor;
if (
$i < $minimum_limit) {
break;
}
echo
"значение i уже подходит";

/* обработка i */

} while (0);
?>

Можно использовать оператор goto вместо подобного "хака".

add a note

User Contributed Notes 6 notes

up
26
jayreardon at gmail dot com
16 years ago
There is one major difference you should be aware of when using the do--while loop vs. using a simple while loop:  And that is when the check condition is made. 

In a do--while loop, the test condition evaluation is at the end of the loop.  This means that the code inside of the loop will iterate once through before the condition is ever evaluated.  This is ideal for tasks that need to execute once before a test is made to continue, such as test that is dependant upon the results of the loop. 

Conversely, a plain while loop evaluates the test condition at the begining of the loop before any execution in the loop block is ever made. If for some reason your test condition evaluates to false at the very start of the loop, none of the code inside your loop will be executed.
up
3
mparsa1372 at gmail dot com
2 years ago
The example below first sets a variable $x to 1 ($x = 1). Then, the do while loop will write some output, and then increment the variable $x with 1. Then the condition is checked (is $x less than, or equal to 5?), and the loop will continue to run as long as $x is less than, or equal to 5:

<?php
$x
= 1;

do {
  echo
"The number is: $x <br>";
 
$x++;
} while (
$x <= 5);
?>
up
-2
Martin
8 years ago
Do-while loops can also be used inside other loops, for example:

<?php
// generating an array with random even numbers between 1 and 1000

$numbers = array();
$array_size = 10;

// for loop runs as long as 2nd condition evaluates to true
for ($i=0;$i<$array_size;$i++) {

     
// always executes (as long as the for-loop runs)
     
do {
        
$random = rand(1,1000);

    
// if the random number is even (condition below is false), the do-while-loop execution ends
     // if it's uneven (condition below is true), the loop continues by generating a new random number
    
} while (($random % 2) == 1);

    
// even random number is written to array and for-loop continues iteration until original condition is met
    
$numbers[] = $random;
}

// sorting array by alphabet

asort($numbers);

// printing array

echo '<pre>';
print_r($numbers);
echo
'</pre>';
?>
up
-25
andrew at NOSPAM dot devohive dot com
14 years ago
I'm guilty of writing constructs without curly braces sometimes... writing the do--while seemed a bit odd without the curly braces ({ and }), but just so everyone is aware of how this is written with a do--while...

a normal while:
<?php
  
while ( $isValid ) $isValid = doSomething($input);
?>

a do--while:
<?php
  
do $isValid = doSomething($input);
   while (
$isValid );
?>

Also, a practical example of when to use a do--while when a simple while just won't do (lol)... copying multiple 2nd level nodes from one document to another using the DOM XML extension

<?php
  
# open up/create the documents and grab the root element
  
$fileDoc  = domxml_open_file('example.xml'); // existing xml we want to copy
  
$fileRoot = $fileDoc->document_element();
  
$newDoc   = domxml_new_doc('1.0'); // new document we want to copy to
  
$newRoot  = $newDoc->create_element('rootnode');
  
$newRoot  = $newDoc->append_child($newRoot); // this is the node we want to copy to

   # loop through nodes and clone (using deep)
  
$child = $fileRoot->first_child(); // first_child must be called once and can only be called once
  
do $newRoot->append_child($child->clone_node(true)); // do first, so that the result from first_child is appended
  
while ( $child = $child->next_sibling() ); // we have to use next_sibling for everything after first_child
?>
up
-25
M. H. S.
3 years ago
<!-- if you write with WHILE: -->
<?php
$i
= 100
while ($i < 10) :
    echo
"\$i is $i.";
endwhile;
?>
<!-- returning: -->

<!-- if you write with DO/WHILE: -->
<?php
$i
= 100;
do {
    echo
"\$i is $i.";
} while (
$i < 10);
?>
<!-- returning: -->
$i is 100.
up
-29
iamjeffjack at gmail dot com
5 years ago
If you put multiple conditions in the while check, a do-while loop checks these conditions in order and runs again once it encounters a condition that returns true. This can be helpful to know when troubleshooting why a do-while loop isn't finishing. An (illustrative-only) example:

<?php
    $numberOne
= 0;
    do {
        echo
$numberOne;
       
$numberOne++;
    } while(
$numberOne < 5 || incrementNumberTwo() );
    function
incrementNumberTwo() {
        echo
"function incrementNumberTwo called";
        return
false;
    }
   
// outputs "01234function incrementNumberTwo called"
?>
To Top