Skip to content

Instantly share code, notes, and snippets.

@Zerquix18
Created December 15, 2017 00:32
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 Zerquix18/d81203151c527614795a5b37459d8f40 to your computer and use it in GitHub Desktop.
Save Zerquix18/d81203151c527614795a5b37459d8f40 to your computer and use it in GitHub Desktop.
Shortest PHP Fizzbuzz
<?php
for($i=0;$i<1e2;)echo((++$i%3?'':'Fizz').($i%5?'':'Buzz')?:$i),"\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment