Skip to content

Instantly share code, notes, and snippets.

@rsky
Created January 24, 2011 21:38
Show Gist options
  • Save rsky/794013 to your computer and use it in GitHub Desktop.
Save rsky/794013 to your computer and use it in GitHub Desktop.
PHP FizzBuzz
<?php for($i=0;$i++<100;)echo$i%3?($i%5?$i:"Buzz"):"Fizz".($i%5?"":"Buzz"),"\n";
<?php while($i++<100)echo$i%3?($i%5?$i:Buzz):Fizz.($i%5?"":Buzz),"\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment