PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

for> <while
Last updated: Fri, 22 Aug 2008

view this page in

do-while

do-while-Schleifen sind den while -Schleifen sehr ähnlich, außer dass der Wahrheitsgehalt des Ausdrucks erst am Ende jedes Durchlaufs geprüft wird, statt am Anfang. Der Hauptunterschied zu gewöhnlichen while-Schleifen ist der, dass die Schleife bei do-while in jeden Fall einmal durchlaufen wird (die Bedingung wird erst am Ende eines Durchlaufs geprüft).Bei while-Schleifen hingegen kann es durchaus passieren, dass die Schleife nie durchlaufen wird (die Bedingung wird immer am Anfang eines Durchlaufs überprüft. Wird diese Bedingung von Anfang an als FALSE ausgewertet endet die Ausführung der Schleife sofort).

Es gibt nur eine Syntax für do-while-Schleifen:

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

Die obige Schleife wird genau einmal durchlaufen, da nach der ersten Wiederholung die Erfüllung der Bedingung geprüft wird. Diese Bedingung ist aber nicht erfüllt ($i ist nicht größer als 0), wird als FALSE ausgewertet, und die Schleifenausführung beendet.

Erfahrene C-Anwender kennen auch die Möglichkeit, Programm-Blöcke mit do-while (0) einzuschliessen und dann die break Anweisung zu benutzen, um einen Programmblock auch in der Mitte verlassen zu können. Der folgende Programm-Ausschnitt zeigt diese Möglichkeit:

do {
    if ($i < 5) {
        echo "i ist nicht groß genug";
        break;
    }
    $i *= $factor;
    if ($i < $minimum_limit) {
        break;
    }
    echo "i ist ok";

    /* mach was mit i */

} while (0);

Es ist nicht weiter tragisch, wenn Sie dieses Beispiel nicht oder nur zum Teil verstehen. Sie können auch ohne dieses 'Feature' effektive PHP-Programme und Skripte schreiben.



for> <while
Last updated: Fri, 22 Aug 2008
 
add a note add a note User Contributed Notes
do-while
Ryan
17-Apr-2008 10: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.
Anonymous
31-Mar-2008 01:11
copy edit;
s/one time exactly/exactly once/
jantsch at gmail dot com
28-Nov-2007 05: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 ));

}

?>
jayreardon at gmail dot com
10-Apr-2007 03: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.

for> <while
Last updated: Fri, 22 Aug 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites