Skip to content

Instantly share code, notes, and snippets.

@gooh
Created May 29, 2013 11:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gooh/5669651 to your computer and use it in GitHub Desktop.
Save gooh/5669651 to your computer and use it in GitHub Desktop.
<?php
for ($i = 1; $i <= 100; $i++) {
echo
$i % 3 === 0 ? 'Fizz' : '',
$i % 5 === 0 ? 'Buzz' : '',
$i % 3 && $i % 5 ? $i : '',
PHP_EOL;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment