Skip to content

Instantly share code, notes, and snippets.

@Tocacar
Last active October 7, 2015 14:57
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 Tocacar/3182576 to your computer and use it in GitHub Desktop.
Save Tocacar/3182576 to your computer and use it in GitHub Desktop.
FizzBuzz
<?php
for ($i = 1; $i < 100; $i++) {
if ($i % 3 == 0) {
echo 'Fizz';
} elseif ($i % 5 == 0) {
echo 'Buzz';
} else {
echo $i;
}
echo PHP_EOL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment