“Pengulangan PHP” Código de respuesta

Pengulangan PHP

<?php
for( $i = 0; $i < 5; $i++) {
    echo "hello world <br>"; }
?>

Pengulangan PHP

<?php
$i = 0;
do {
    echo "hello all <br>";
    $i++;
} while ($i < 5);
?>

Pengulangan PHP

<?php
$i = 0;
while ($i <5) {
    echo "hello world! <br>";
    $i++;}
?>

Respuestas similares a “Pengulangan PHP”

Preguntas similares a “Pengulangan PHP”

Más respuestas relacionadas con “Pengulangan PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código