Skip to content

Instantly share code, notes, and snippets.

@rskull
Last active December 17, 2015 03:18
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 rskull/5541841 to your computer and use it in GitHub Desktop.
Save rskull/5541841 to your computer and use it in GitHub Desktop.
コードゴルフでFizzBuzz 83文字 -> PHP 5.3系
<?for($i=0;$i<100;){$s='';++$i%3>0?:$s='Fizz';$i%5>0?:$s.='Buzz';$s?:$s=$i;echo$s;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment