lunes, octubre 23, 2006

PHP - Looping

En PHP para hacer que una o varias sentencias se repitan varias veces se utiliza cualquiera de estos 4 comando de "Loop".

- while
- do ... while
- for
- foreach


while

Sintaxis:

while (condicion){
sentecncias;
};

Ejemplo:

<html>
<body>
<?php
$i=1;
while ($i<=3) {
echo $i . "<br>";
$i++;
}
?>
</body>
</html>

do ... while

Sintaxis:

do {
sentencias;
} while (condicion);

ejemplo:

<html>
<body>
<?php
$i=1;
do{
echo $i . "<br>";
$i++;
}while ($i<=3);
?>
</body>
</html>

for

Sintaxis:

for (valorInicial;condicion;incremento){
sentencias;
}

Ejemplo:

<html>
<body>
<?php
for ($i=1;$i<=5;$i++){
echo "Hola Mundo.<br>";
}
?>
</body>
</html>

Foreach

Ejemplo:

foreach (array as valor){
sentencias;
}

Sintaxis:

<html>
<body>
<?php
$arr=array("uno","dos","tres");
foreach ($arr as $valor){
echo "El valor es " . $valor . "<br>";
}
?>
</body>
</html>

No hay comentarios.: