L2 Info : PHP et Programmation Web
 
◃  Ch. 1 Le language PHP  ▹
 

Structures de contrôles : while et do while

  • while
    $tab=['a','b','c'];
    $i = 0;
    while ($i < sizeof(tab)) {
    	echo $tab[$i]."\n";
        $i++;
    }
  • Affiche :
    a
    b
    c
    
  • do while
    $i = 0;
    do {
        echo "$tab[$i]\n";
        $i++;
    } while ($i < sizeof($tab))
  • Affiche :
    a
    b
    c