“Comment écrire une boucle en php” 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($i = 0;$i < count($users);$i++) {

    if($users[$i]['user_id']==3){

        $userName = $users[$i]['first_name'];

    }

}
Energetic Echidna

Comment écrire une boucle en php

<?php

//FOR each item within the array, "ECHO" out the index ($i) and value of each item.
$numbersArray = [1, 2, 3]
for($i = 0; $i < count($numbersArray); $i++) {
	echo "Index of ".$i."= ".$numbersArray[$i]."<br>";
}

?>
Magnanimous Impala

php pour la boucle

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

boucle PHP

/*teting*/
Stormy Spider

Réponses similaires à “Comment écrire une boucle en php”

Questions similaires à “Comment écrire une boucle en php”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code