Skip to content

Instantly share code, notes, and snippets.

@oliveiraev
Created July 18, 2011 18:46
Show Gist options
  • Save oliveiraev/1090303 to your computer and use it in GitHub Desktop.
Save oliveiraev/1090303 to your computer and use it in GitHub Desktop.
Smallest FizzBuzz that I can do
<?php
for($i = 1; $i <= 100; $i++){
$print = $i % 3 ? 'Fizz' : '';
if($i % 5) $print .= 'Buzz';
echo '<p>'.(empty($print) ? $i : $print).'</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment