Skip to content

Instantly share code, notes, and snippets.

@sasezaki
Created December 12, 2014 14:25
Show Gist options
  • Save sasezaki/f8440f80007a9ad43ad6 to your computer and use it in GitHub Desktop.
Save sasezaki/f8440f80007a9ad43ad6 to your computer and use it in GitHub Desktop.
seq 100 | php -d short_open_tag=1 streeem.php
<?
while($x = fgets(STDIN)?:die) {
if ($x % 15 == 0):
?>FIZZBUZZ<?
elseif ($x % 3 == 0):
?>FIZZ<?
elseif ($x % 5 == 0):
?>Buzz<?
else: ?>x<?
endif; ?>
<?}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment