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
?>
do-while
Les boucles do-while ressemblent beaucoup aux boucles while, mais l'expression est testée à la fin de chaque itération plutôt qu'au début. La principale différence par rapport à la boucle while est que la première itération de la boucle do-while est toujours exécutée (l'expression n'est testée qu'à la fin de l'itération), ce qui n'est pas le cas lorsque vous utilisez une boucle while (l'expression est vérifiée au début de chaque itération).
Il n'y a qu'une syntaxe possible pour les boucles do-while :
Exemple #1 Instruction do-while
<?php
$i = 0;
do {
echo $i;
} while ($i > 0);
?>
La boucle ci-dessus ne va être exécutée qu'une seule fois, car lorsque l'expression est évaluée, elle vaut FALSE (car la variable $i n'est pas plus grande que 0) et l'exécution de la boucle s'arrête.
Les utilisateurs familiers du C sont habitués à une utilisation différente des boucles do-while , qui permet de stopper l'exécution de la boucle au milieu des instructions, en l'encapsulant dans un do-while(0) la fonction break. Le code suivant montre une utilisation possible :
Exemple #2 Instruction while et break
<?php
do {
if ($i < 5) {
echo "i n'est pas suffisamment grand";
break;
}
$i *= $factor;
if ($i < $minimum_limit) {
break;
}
echo "i est bon";
/* ...traitement de i... */
} while (0);
?>
Ne vous inquiétez pas si vous ne comprenez pas tout correctement. Vous pouvez écrire des scripts très très puissants sans utiliser cette fonctionnalité.
do-while
15-Sep-2008 07:44
18-Apr-2008 07:59
I've found that the most useful thing to use do-while loops for is multiple checks of file existence. The guaranteed iteration means that it will check through at least once, which I had trouble with using a simple "while" loop because it never incremented at the end.
My code was:
<?php
$filename = explode(".", $_FILES['file']['name']); // File being uploaded
$i=0; // Number of times processed (number to add at the end of the filename)
do {
/* Since most files being uploaded don't end with a number,
we have to make sure that there is a number at the end
of the filename before we start simply incrementing. I
admit there is probably an easier way to do this, but this
was a quick slap-together job for a friend, and I find it
works just fine. So, the first part "if($i > 0) ..." says that
if the loop has already been run at least once, then there
is now a number at the end of the filename and we can
simply increment that. Otherwise, we have to place a
number at the end of the filename, which is where $i
comes in even handier */
if($i > 0) $filename[0]++;
else $filename[0] = $filename[0].$i;
$i++;
} while(file_exists("uploaded/".$filename[0].".".$filename[1]));
/* Now that everything is uploaded, we should move it
somewhere it can be accessed. Hence, the "uploaded"
folder. */
move_uploaded_file($_FILES['file']['tmp_name'], "uploaded/".$filename[0].".".$filename[1]);
?>
I'm sure there are plenty of ways of doing this without using the do-while loop, but I managed to toss this one together in no-time flat, and I'm not a great PHP programmer. =) It's simple and effective, and I personally think it works better than any "for" or "while" loop that I've seen that does the same thing.
29-Nov-2007 02:56
Useful when you want to continue to read a recordset that was already being read like in:
<?
$sql = "select * from customers";
$res = mysql_query( $sql );
// read the first record
if( $rs = mysql_fetch_row( $res ) ){
// do something with this record
}
// do another stuff here
// keep reading till the end
if( mysql_num_rows( $res )>1 ){
do{
// processing the records till the end
}while( $rs = mysql_fetch_row( $res ));
}
?>
11-Apr-2007 12:36
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.
