Skip to content

Instantly share code, notes, and snippets.

@veb
Created June 29, 2015 00:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veb/253fbe11a99328368297 to your computer and use it in GitHub Desktop.
Save veb/253fbe11a99328368297 to your computer and use it in GitHub Desktop.
fizzbuzzzzz
<?php
for ($i = 1; $i <= 100; $i++)
{
$cond['Fizz'] = 3;
$cond['Buzz'] = 5;
$x = $i;
foreach($cond as $k => $v) {
if ($i % $v == 0) {
echo $k;
$x = null;
}
}
echo "$x <br/>\n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment