Skip to content

Instantly share code, notes, and snippets.

@tanrax
Created January 16, 2014 16:43
Show Gist options
  • Save tanrax/8458356 to your computer and use it in GitHub Desktop.
Save tanrax/8458356 to your computer and use it in GitHub Desktop.
PHP: Ejemplo bucles
<?php
//For
for ($i = 0; $i < 5; $i++) {
echo $i;
}
//While
$iNum = 0;
while ($iNum <= 10) {
$iNum = $iNum + 1;
echo $iNum;
}
//Do-while
$iNum2 = 0;
do {
$iNum2 = $iNum2 + 1;
echo $iNum2;
} while ($iNum2 <= 10);
//Forearch
$aMeses = {"Enero", "Febrero"...}
foreach ($aMeses as $valor) {
echo $valor;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment