“Php pour la boucle” Réponses codées

Pour Loop PHP

<?php
	$fruits = ["apple", "banana", "orange"];
	for($i=0;$i<count($fruits);$i++){
    echo "Index of ".$i."= ".$fruits[$i]."<br>";
    }
  ?>
SISO

pour boucle en php

/*
For loop in php
*/

<?php
for ($i = 0; $i < 10; $i++) {
     echo $i."<br>";
} 
?>
Ankur

php pour


<?php
/* example 1 */

for ($i = 1; $i <= 10; $i++) {
    echo $i;
}

/* example 2 */

for ($i = 1; ; $i++) {
    if ($i > 10) {
        break;
    }
    echo $i;
}

/* example 3 */

$i = 1;
for (; ; ) {
    if ($i > 10) {
        break;
    }
    echo $i;
    $i++;
}

/* example 4 */

for ($i = 1, $j = 0; $i <= 10; $j += $i, print $i, $i++);
?>

Alberto Peripolli

php pour la boucle

for($i = 0; $i <=10; $i++){
	echo "The index is $i";
}
I have no idea to make a name

php pour la boucle

for($i = 1; $i > 10; $i++){
  //show i value
	echo "Your Number Is :$i";
}
Coder Khayrul

Php pour la boucle

<?php
for ($x = 0; $x <= 10; $x++) {
  echo "The number is: $x <br>";
}
?>
naly moslih

Réponses similaires à “Php pour la boucle”

Questions similaires à “Php pour la boucle”

Plus de réponses similaires à “Php pour la boucle” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code