Skip to content

Instantly share code, notes, and snippets.

@yuya-takeyama
Created January 23, 2011 18:07
Show Gist options
  • Save yuya-takeyama/792286 to your computer and use it in GitHub Desktop.
Save yuya-takeyama/792286 to your computer and use it in GitHub Desktop.
FizzBuzz code golf.
<?for(;$i++<100;)echo $i%15?$i%5?$i%3?$i:Fizz:Buzz:FizzBuzz,"
";
@yuya-takeyama
Copy link
Author

You have to run this code like below.
$ php -d error_reporting=0 fizzbuzz.php

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment